diff options
author | Juan J. Martinez <jjm@usebox.net> | 2019-05-08 21:07:19 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-05-29 22:57:28 +0100 |
commit | cb58af130d6727c1e7a34db4ca9ba8cd5fe73323 (patch) | |
tree | fba0fb6ac923be67840711ac93a5954bc0fb5f99 | |
parent | 9a5b3e635b3c49ccb9025cce64939572394984f3 (diff) | |
download | dotnvim-cb58af130d6727c1e7a34db4ca9ba8cd5fe73323.tar.gz dotnvim-cb58af130d6727c1e7a34db4ca9ba8cd5fe73323.zip |
Testing gruvbox
-rw-r--r-- | .gitmodules | 3 | ||||
m--------- | bundle/gruvbox | 0 | ||||
-rw-r--r-- | vimrc | 14 |
3 files changed, 9 insertions, 8 deletions
diff --git a/.gitmodules b/.gitmodules index 2e32143..bdb4453 100644 --- a/.gitmodules +++ b/.gitmodules @@ -37,3 +37,6 @@ [submodule "bundle/terminus"] path = bundle/terminus url = https://github.com/wincent/terminus +[submodule "bundle/gruvbox"] + path = bundle/gruvbox + url = https://github.com/morhetz/gruvbox.git diff --git a/bundle/gruvbox b/bundle/gruvbox new file mode 160000 +Subproject cb4e7a5643f7d2dd40e694bcbd28c4b89b185e8 @@ -67,11 +67,13 @@ call pathogen#helptags() " looks nice; apparently needs to go after pathogen set termguicolors set background=dark -let g:monokai_term_italic=1 -colorscheme monokai +let g:gruvbox_italic=1 +let g:gruvbox_contrast_dark="hard" +colorscheme gruvbox -" show the cursor line -set cursorline +" EOL whitespace +hi WhitespaceEOL ctermbg=red guibg=red +match WhitespaceEOL /\s\+$/ " for tmux, screen, etc set t_ut= @@ -87,10 +89,6 @@ au CursorHold,CursorHoldI * checktime map <C-n> :NERDTreeToggle<CR> let NERDTreeQuitOnOpen=1 -" highlight end of line whitespace -highlight WhitespaceEOL ctermbg=red guibg=red -match WhitespaceEOL /\s\+$/ - "" gen_tags.vim (reguires GNU global, aka gtags) " disable ctags completely, use it through gtags plugin let g:loaded_gentags#ctags = 1 |