diff options
author | Matthias Braendli <matthias.braendli@u-blox.com> | 2015-10-26 16:47:48 +0100 |
---|---|---|
committer | Matthias Braendli <matthias.braendli@u-blox.com> | 2015-10-26 16:47:48 +0100 |
commit | 2a6a9134720397cca5e78c3a352d2d93ef31cc59 (patch) | |
tree | bf460bc1340b7d54716632e76cbdd830ed400e4d /dotvimrc | |
parent | f1ae12607ee3732a47b17ffe56f42c0d3ba490ff (diff) | |
download | vimrc-2a6a9134720397cca5e78c3a352d2d93ef31cc59.tar.gz vimrc-2a6a9134720397cca5e78c3a352d2d93ef31cc59.tar.bz2 vimrc-2a6a9134720397cca5e78c3a352d2d93ef31cc59.zip |
Set colorscheme for nvim
Diffstat (limited to 'dotvimrc')
-rw-r--r-- | dotvimrc | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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 + |