Make vim light as well
This commit is contained in:
parent
fd5c114480
commit
28de2558cf
3 changed files with 9 additions and 1 deletions
|
@ -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
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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' }
|
||||||
|
|
Loading…
Reference in a new issue