]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
Reordered some settings.
authorSimon Ruderich <simon@ruderich.org>
Sun, 26 Oct 2008 11:29:54 +0000 (12:29 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sun, 26 Oct 2008 11:29:54 +0000 (12:29 +0100)
vimrc

diff --git a/vimrc b/vimrc
index 49dbb7ac347eaea31229affc7b1791890c83b45a..cfa181bc5f7925f84bc98d3eb86d5795b2d76fd3 100644 (file)
--- 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.