vim: switched to PaperColor
This commit is contained in:
parent
d72dc69045
commit
4bf4522e33
|
@ -12,8 +12,9 @@ vim_configurable.customize {
|
||||||
set shiftwidth=4 " Default indent spacing
|
set shiftwidth=4 " Default indent spacing
|
||||||
set expandtab " Expand [TABS] to spaces
|
set expandtab " Expand [TABS] to spaces
|
||||||
syntax on " Enable syntax highlighting
|
syntax on " Enable syntax highlighting
|
||||||
colorscheme gruvbox " Set the default colour scheme
|
|
||||||
set t_Co=256 " Use 265 colors in vim
|
set t_Co=256 " Use 265 colors in vim
|
||||||
|
set background=light " Set the default background scheme
|
||||||
|
colorscheme PaperColor " Set the default colour scheme
|
||||||
set spell spelllang=en_au " Defaul spell checking language
|
set spell spelllang=en_au " Defaul spell checking language
|
||||||
set spellfile=~/.vim-spell.en.utf-8.add " Add the spellfile
|
set spellfile=~/.vim-spell.en.utf-8.add " Add the spellfile
|
||||||
hi clear SpellBad " Clear any unwanted default settings
|
hi clear SpellBad " Clear any unwanted default settings
|
||||||
|
@ -47,11 +48,11 @@ vim_configurable.customize {
|
||||||
" Light during the day, dark during the night
|
" Light during the day, dark during the night
|
||||||
let hour = strftime("%H")
|
let hour = strftime("%H")
|
||||||
if 7 <= hour && hour < 17
|
if 7 <= hour && hour < 17
|
||||||
set background=dark
|
set background=light
|
||||||
"hi Normal ctermbg=none " Set a transparent background
|
"hi Normal ctermbg=none " Set a transparent background
|
||||||
"let g:airline_solarized_bg='dark' " Set the airline background
|
"let g:airline_solarized_bg='dark' " Set the airline background
|
||||||
else
|
else
|
||||||
set background=dark
|
set background=light
|
||||||
"hi Normal ctermbg=none " Set a transparent background
|
"hi Normal ctermbg=none " Set a transparent background
|
||||||
"let g:airline_solarized_bg='dark' " Set the airline background
|
"let g:airline_solarized_bg='dark' " Set the airline background
|
||||||
endif
|
endif
|
||||||
|
@ -273,6 +274,7 @@ vim_configurable.customize {
|
||||||
nerdtree # File system explorer
|
nerdtree # File system explorer
|
||||||
nerdtree-git-plugin # Plugin for nerdtree showing git status
|
nerdtree-git-plugin # Plugin for nerdtree showing git status
|
||||||
nord-vim # Nord theme for ViM
|
nord-vim # Nord theme for ViM
|
||||||
|
papercolor-theme # Light & dark schemes inspired by Google's Material Design
|
||||||
snipmate # Concise vim script implementing TextMate's snippets features
|
snipmate # Concise vim script implementing TextMate's snippets features
|
||||||
solarized # Solarized colours for Vim
|
solarized # Solarized colours for Vim
|
||||||
supertab # Allows you to use <Tab> for all your insert completion
|
supertab # Allows you to use <Tab> for all your insert completion
|
||||||
|
|
Loading…
Reference in a new issue