Make vim light as well

This commit is contained in:
Nicole Tietz-Sokolskaya 2020-04-17 09:57:42 -04:00
parent fd5c114480
commit 28de2558cf
3 changed files with 9 additions and 1 deletions

View File

@ -62,8 +62,13 @@ vimwiki() {
cd - cd -
} }
getcolors() { set_term_colors() {
bash -c "$(wget -qO- https://git.io/vQgMr)" bash -c "$(wget -qO- https://git.io/vQgMr)"
} }
print_available_colors() {
for i in {0..255} ; do printf "\x1b[38;5;${i}mcolour${i}\n"; done
}

View File

@ -1,4 +1,6 @@
let g:airline_theme="papercolor"
set termguicolors set termguicolors
set background=light set background=light
let g:gruvbox_italic=1 let g:gruvbox_italic=1

View File

@ -10,6 +10,7 @@ Plug 'airblade/vim-gitgutter' " Shows a diff in the gutter
" TODO: what is this section called? " TODO: what is this section called?
" TODO: consider switching to powerline " TODO: consider switching to powerline
Plug 'vim-airline/vim-airline' " Display more contextual information Plug 'vim-airline/vim-airline' " Display more contextual information
Plug 'vim-airline/vim-airline-themes'
" language support " language support
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' } Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }