diff options
m--------- | bundle/neobundle.vim | 0 | ||||
-rw-r--r-- | dotvimrc | 9 |
2 files changed, 8 insertions, 1 deletions
diff --git a/bundle/neobundle.vim b/bundle/neobundle.vim -Subproject 108ce2c80e0af6898f967f4df7ff189368351ff +Subproject 5f3b67166d8a4b1dd073aea39850058521fe891 @@ -14,7 +14,10 @@ set number "set mouse=a "Disabled set grepprg=grep\ -nH\ $* let g:tex_flavor = "latex" + +" so that :find and :tabfind work set path=$PWD/** + " in visual mode, show count set showcmd set scrolloff=3 @@ -96,7 +99,10 @@ function! ToggleFullScreen() redraw endfunction -if has("gui_running") +if has("nvim") + colorscheme bramwombat + set cursorline +elseif has("gui_running") colorscheme bramwombat if has("gui_gtk2") @@ -288,3 +294,4 @@ call neobundle#end() filetype plugin indent on NeoBundleCheck + |