use gruvbox color scheme in vim
This commit is contained in:
parent
0a2e504078
commit
f3e31d2ef4
5 changed files with 12 additions and 5 deletions
1
.vim/bundle/gruvbox
Submodule
1
.vim/bundle/gruvbox
Submodule
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit bf2885a95efdad7bd5e4794dd0213917770d79b7
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit f7cbf8c42959689461e6dfcc92b4e453cb4ae17c
|
Subproject commit 0de4c9df21abf9256091d205148601f718d3a12c
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit 0f9995d5996adf613297896c744415cd9e6b7a80
|
Subproject commit 97cf3e6e638f936187d5f6e9b5eb1bdf0a4df256
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit 32b0d6266361614a6a07cfe850750e900cd50575
|
Subproject commit 6c53da0783a15d2dcde504ae299468ac69078ebe
|
||||||
10
.vimrc
10
.vimrc
|
|
@ -26,6 +26,10 @@ Plugin 'vim-airline/vim-airline-themes'
|
||||||
" base16 color scheme
|
" base16 color scheme
|
||||||
Plugin 'chriskempson/base16-vim'
|
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
|
" All of your Plugins must be added before the following line
|
||||||
call vundle#end() " required
|
call vundle#end() " required
|
||||||
filetype plugin indent on " required
|
filetype plugin indent on " required
|
||||||
|
|
@ -42,13 +46,15 @@ filetype plugin indent on " required
|
||||||
" Put your non-Plugin stuff after this line
|
" Put your non-Plugin stuff after this line
|
||||||
|
|
||||||
" airline theme
|
" airline theme
|
||||||
let g:airline_theme='violet'
|
"let g:airline_theme='violet'
|
||||||
|
let g:airline_theme='gruvbox'
|
||||||
|
|
||||||
set t_Co=256
|
set t_Co=256
|
||||||
|
|
||||||
"colorscheme base16-codeschool
|
"colorscheme base16-codeschool
|
||||||
"colorscheme base16-atelier-dune-light
|
"colorscheme base16-atelier-dune-light
|
||||||
colorscheme base16-darktooth
|
"colorscheme base16-darktooth
|
||||||
|
colorscheme gruvbox
|
||||||
syntax on
|
syntax on
|
||||||
|
|
||||||
" enable vim modelines
|
" enable vim modelines
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue