dotfiles

commit 8f8d64f627ab0a5082d3f5144e5d889c7fe41122

Author: Honza Pokorny <me@honza.ca>

vimrc updates

 vimrc | 17 ++++++++---------


diff --git a/vimrc b/vimrc
index 938789df302e961874670d5f98246d8cde4ef43f..ba97e46a4e48819a5bbd9aad5d4d8de6e8fda2f7 100644
--- a/vimrc
+++ b/vimrc
@@ -57,16 +57,11 @@ " Two spaces to end a sentence
 set cpoptions+=J
 
 " TODO: Only add the 73 to Python files
-set colorcolumn=80,73
+" set colorcolumn=80,73
 
-set cursorline
+" set cursorline
 set nojoinspaces
 
-set undodir=~/.vim/tmp/undo//     " undo files
-set backupdir=~/.vim/tmp/backup// " backups
-set directory=~/.vim/tmp/swap//   " swap files
-set backup                        " enable backups
-set noswapfile                    " It's 2012, Vim.
 
 filetype on
 filetype plugin on
@@ -109,8 +104,8 @@
 " Toggle whitespace characters
 nmap <leader>l :set list!<cr>
 
-highlight OverLength ctermbg=red ctermfg=white guibg=#592929
-match OverLength /\%80v.\+/
+" highlight OverLength ctermbg=red ctermfg=white guibg=#592929
+" match OverLength /\%80v.\+/
 
 " Diplay cursor position in bottom right corner
 set ruler
@@ -200,3 +195,7 @@ set pastetoggle=
 
 syntax enable
 set background=dark
+
+set nobackup       " no backup files
+set nowritebackup  " only in case you don't want a backup file while editing
+set noswapfile     " It's 2012, Vim.