From f3e31d2ef47cb074d90bc9ea9f9970e16bfd6106 Mon Sep 17 00:00:00 2001 From: Oliver Ladner Date: Fri, 13 Aug 2021 09:24:38 +0200 Subject: [PATCH] use gruvbox color scheme in vim --- .vim/bundle/gruvbox | 1 + .vim/bundle/vim-airline | 2 +- .vim/bundle/vim-airline-themes | 2 +- .vim/bundle/vim-fugitive | 2 +- .vimrc | 10 ++++++++-- 5 files changed, 12 insertions(+), 5 deletions(-) create mode 160000 .vim/bundle/gruvbox diff --git a/.vim/bundle/gruvbox b/.vim/bundle/gruvbox new file mode 160000 index 0000000..bf2885a --- /dev/null +++ b/.vim/bundle/gruvbox @@ -0,0 +1 @@ +Subproject commit bf2885a95efdad7bd5e4794dd0213917770d79b7 diff --git a/.vim/bundle/vim-airline b/.vim/bundle/vim-airline index f7cbf8c..0de4c9d 160000 --- a/.vim/bundle/vim-airline +++ b/.vim/bundle/vim-airline @@ -1 +1 @@ -Subproject commit f7cbf8c42959689461e6dfcc92b4e453cb4ae17c +Subproject commit 0de4c9df21abf9256091d205148601f718d3a12c diff --git a/.vim/bundle/vim-airline-themes b/.vim/bundle/vim-airline-themes index 0f9995d..97cf3e6 160000 --- a/.vim/bundle/vim-airline-themes +++ b/.vim/bundle/vim-airline-themes @@ -1 +1 @@ -Subproject commit 0f9995d5996adf613297896c744415cd9e6b7a80 +Subproject commit 97cf3e6e638f936187d5f6e9b5eb1bdf0a4df256 diff --git a/.vim/bundle/vim-fugitive b/.vim/bundle/vim-fugitive index 32b0d62..6c53da0 160000 --- a/.vim/bundle/vim-fugitive +++ b/.vim/bundle/vim-fugitive @@ -1 +1 @@ -Subproject commit 32b0d6266361614a6a07cfe850750e900cd50575 +Subproject commit 6c53da0783a15d2dcde504ae299468ac69078ebe diff --git a/.vimrc b/.vimrc index c420219..a6b9ac3 100644 --- a/.vimrc +++ b/.vimrc @@ -26,6 +26,10 @@ Plugin 'vim-airline/vim-airline-themes' " base16 color scheme Plugin 'chriskempson/base16-vim' +" gruvbox color scheme +" https://github.com/morhetz/gruvbox/wiki/Installation +Plugin 'morhetz/gruvbox' + " All of your Plugins must be added before the following line call vundle#end() " required filetype plugin indent on " required @@ -42,13 +46,15 @@ filetype plugin indent on " required " Put your non-Plugin stuff after this line " airline theme -let g:airline_theme='violet' +"let g:airline_theme='violet' +let g:airline_theme='gruvbox' set t_Co=256 "colorscheme base16-codeschool "colorscheme base16-atelier-dune-light -colorscheme base16-darktooth +"colorscheme base16-darktooth +colorscheme gruvbox syntax on " enable vim modelines