X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=vimrc;h=cfa181bc5f7925f84bc98d3eb86d5795b2d76fd3;hb=95d2fc838ee9187f7c6488d449d7769b77b0f3db;hp=49dbb7ac347eaea31229affc7b1791890c83b45a;hpb=ce082513fab8aa490a2a7a80df564136c82e3da9;p=config%2Fdotfiles.git 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.