changeset 314:5f9d52300aaa

Vim tweaks: * Terminal colors for Mac. * Syntastic errors window behaviour. * Disable PythonMode stuff I don't want.
author Ludovic Chabant <ludovic@chabant.com>
date Mon, 10 Aug 2015 18:31:13 -0700
parents de5090faf408
children 5cee1ee030cb
files vim/vimrc
diffstat 1 files changed, 6 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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
+
 " }}}
 
 " }}}