aboutsummaryrefslogtreecommitdiffstats
path: root/dotvimrc
diff options
context:
space:
mode:
Diffstat (limited to 'dotvimrc')
-rw-r--r--dotvimrc9
1 files changed, 8 insertions, 1 deletions
diff --git a/dotvimrc b/dotvimrc
index 55913b6..3d108bd 100644
--- a/dotvimrc
+++ b/dotvimrc
@@ -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
+