From 95d2fc838ee9187f7c6488d449d7769b77b0f3db Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 26 Oct 2008 12:29:54 +0100 Subject: [PATCH] Reordered some settings. --- vimrc | 35 +++++++++++++++++++---------------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/vimrc b/vimrc index 49dbb7a..cfa181b 100644 --- a/vimrc +++ b/vimrc @@ -25,17 +25,6 @@ set tabstop=8 " Enable auto indention. set autoindent -" Activate lines display. -set number -" Display the ruler with current line/file position. -set ruler -" Display partial commands in the status line. -set showcmd - -" Display tabs as "^I" and trailing space as "-". -set list -set listchars=trail:- - " Already display matches while typing the search command. This makes spotting " errors easily. set incsearch @@ -54,6 +43,25 @@ set smartcase set spell set spelllang=en_us + +" Use a dark background. +set background=dark + +" Activate lines display. +set number +" Display the ruler with current line/file position. +set ruler +" Display partial commands in the status line. +set showcmd + +" Visualize the line the cursor is currently in. +set cursorline + +" Display tabs as "^I" and trailing space as "-". +set list +set listchars=trail:- + + " When joining lines only add one space after a sentence. set nojoinspaces @@ -76,11 +84,6 @@ set nomodeline " possible files. set wildmode=longest,list -" Visualize the line the cursor is currently in. -set cursorline - -" Use a dark background. -set background=dark " Use "," as my mapleader. -- 2.44.2