From 90e0c90780e76448aa252b9a975d4ce9237172d6 Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Mon, 15 Jul 2019 21:27:51 +0200 Subject: [PATCH] [vim] replace gruvbox colorscheme with badwolf --- .gitmodules | 7 +++++++ vim/start/badwolf | 1 + vim/start/vim-airline-themes | 1 + vim/vimrc | 9 +++++---- 4 files changed, 14 insertions(+), 4 deletions(-) create mode 160000 vim/start/badwolf create mode 160000 vim/start/vim-airline-themes diff --git a/.gitmodules b/.gitmodules index 8d28ab3..d396801 100644 --- a/.gitmodules +++ b/.gitmodules @@ -31,6 +31,7 @@ [submodule "vim/start/YouCompleteMe"] path = vim/start/YouCompleteMe url = https://github.com/ycm-core/YouCompleteMe.git + ignore = dirty [submodule "vim/start/vim-surround"] path = vim/start/vim-surround url = https://github.com/tpope/vim-surround.git @@ -55,3 +56,9 @@ [submodule "vim/start/nerdtree"] path = vim/start/nerdtree url = https://github.com/scrooloose/nerdtree.git +[submodule "vim/start/badwolf"] + path = vim/start/badwolf + url = https://github.com/sjl/badwolf.git +[submodule "vim/start/vim-airline-themes"] + path = vim/start/vim-airline-themes + url = https://github.com/vim-airline/vim-airline-themes.git diff --git a/vim/start/badwolf b/vim/start/badwolf new file mode 160000 index 0000000..125c16d --- /dev/null +++ b/vim/start/badwolf @@ -0,0 +1 @@ +Subproject commit 125c16dcfd405667b3be75bd0b22739ebeb4567c diff --git a/vim/start/vim-airline-themes b/vim/start/vim-airline-themes new file mode 160000 index 0000000..e6f2332 --- /dev/null +++ b/vim/start/vim-airline-themes @@ -0,0 +1 @@ +Subproject commit e6f233231b232b6027cde6aebeeb18d9138e5324 diff --git a/vim/vimrc b/vim/vimrc index 366ed43..35cccaf 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -94,9 +94,10 @@ augroup CursorLine au WinLeave * setlocal nocursorline augroup END -set bg=dark " Setting dark mode -let g:gruvbox_contrast_dark = 'hard' -colorscheme gruvbox +" Make the gutters darker than the background. +let g:badwolf_darkgutter = 1 +let g:badwolf_tabline = 0 +colorscheme badwolf " " Formatting @@ -210,7 +211,7 @@ autocmd BufRead,BufNewFile *.md set filetype=markdown " vim-airline set timeout timeoutlen=1000 ttimeoutlen=50 let g:airline_powerline_fonts = 1 -let g:airline_theme = 'gruvbox' +let g:airline_theme = 'badwolf' let g:airline#extensions#tabline#enabled = 1 " JSON.vim http://www.vim.org/scripts/script.php?script_id=1945