diff options
author | Matt Singleton <matthew.j.singleton@gmail.com> | 2011-05-17 16:41:10 -0400 |
---|---|---|
committer | Matt Singleton <matthew.j.singleton@gmail.com> | 2011-05-17 16:41:10 -0400 |
commit | 2419d6b34fdbbe862192e9d7cb5cfc1ccfbe810e (patch) | |
tree | ec5d26293e07169e3923cab14bdc2dd465a35de5 /vimrc | |
parent | fbf4d9b95adffcfaeb4dc6321b47d6c81c1b3aea (diff) |
don't highlight the cursor line. set tabs size for text files
Diffstat (limited to 'vimrc')
-rw-r--r-- | vimrc | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -12,7 +12,6 @@ set smartcase " respect case in search if uppercase is used set nowrap " do not wrap lines set backspace=indent,eol,start " backspace over all stuff set cursorcolumn " highlight the current column -set cursorline " highlight the current line " " formatting @@ -36,7 +35,7 @@ if has("autocmd") filetype plugin indent on au! - au FileType text setlocal tw=72 + au FileType text setlocal tw=72 ts=2 sw=2 sts=2 au FileType html setlocal ts=2 sw=2 sts=2 au FileType xhtml setlocal ts=2 sw=2 sts=2 au FileType ruby setlocal ts=2 sw=2 sts=2 |