# HG changeset patch # User Ludovic Chabant # Date 1439256673 25200 # Node ID 5f9d52300aaa388331449cebc3efdba0c83bc785 # Parent de5090faf40831b2f77065b6d860e79cdd03cdf9 Vim tweaks: * Terminal colors for Mac. * Syntastic errors window behaviour. * Disable PythonMode stuff I don't want. diff -r de5090faf408 -r 5f9d52300aaa vim/vimrc --- a/vim/vimrc Wed Jul 29 07:38:09 2015 -0700 +++ b/vim/vimrc Mon Aug 10 18:31:13 2015 -0700 @@ -196,8 +196,8 @@ set background=dark else set background=dark - "let g:solarized_termcolors = 256 - "let g:solarized_termtrans = 1 + let g:solarized_termcolors = 256 + let g:solarized_termtrans = 1 endif colorscheme solarized @@ -262,7 +262,7 @@ " Syntastic {{{ -let g:syntastic_auto_loc_list = 1 +let g:syntastic_auto_loc_list = 2 let g:syntastic_check_on_open = 1 let g:syntastic_check_on_wq = 0 @@ -312,7 +312,7 @@ let g:pymode = 1 let g:pymode_python = 'python' -let g:pymode_syntax = 1 +let g:pymode_syntax = 0 let g:pymode_syntax_all = 0 let g:pymode_syntax_builtin_objs = 1 let g:pymode_syntax_print_as_function = 1 @@ -329,6 +329,8 @@ let g:pymode_virtualenv = 0 +let g:pymode_rope = 0 + " }}} " }}}