From: Simon Ruderich Date: Sun, 26 Oct 2008 11:29:54 +0000 (+0100) Subject: Reordered some settings. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=95d2fc838ee9187f7c6488d449d7769b77b0f3db;p=config%2Fdotfiles.git Reordered some settings. --- 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.