Switched ViM to nord theme
This commit is contained in:
parent
5614c41c63
commit
69bf770fbc
|
@ -11,7 +11,7 @@ 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
|
colorscheme nord " Set the default colour scheme
|
||||||
set t_Co=256 " Use 265 colors in vim
|
set t_Co=256 " Use 265 colors in vim
|
||||||
set spell spelllang=en_au " Defaul spell checking language
|
set spell spelllang=en_au " Defaul spell checking language
|
||||||
hi clear SpellBad " Clear any unwanted default settings
|
hi clear SpellBad " Clear any unwanted default settings
|
||||||
|
@ -20,7 +20,7 @@ vim_configurable.customize {
|
||||||
match ErrorMsg '\s\+$' "
|
match ErrorMsg '\s\+$' "
|
||||||
|
|
||||||
let g:airline_powerline_fonts = 1 " Use powerline fonts
|
let g:airline_powerline_fonts = 1 " Use powerline fonts
|
||||||
let g:airline_theme='gruvbox' " Set the airline theme
|
let g:airline_theme='nord' " Set the airline theme
|
||||||
|
|
||||||
"call togglebg#map("<F10>") " Toggle background colour between dark|light
|
"call togglebg#map("<F10>") " Toggle background colour between dark|light
|
||||||
|
|
||||||
|
@ -42,11 +42,11 @@ vim_configurable.customize {
|
||||||
if 7 <= hour && hour < 17
|
if 7 <= hour && hour < 17
|
||||||
set background=light
|
set background=light
|
||||||
hi Normal ctermbg=none " Set a transparent background
|
hi Normal ctermbg=none " Set a transparent background
|
||||||
let g:airline_gruvbox_bg='light' " Set the airline background
|
let g:airline_nord_bg='light' " Set the airline background
|
||||||
else
|
else
|
||||||
set background=dark
|
set background=dark
|
||||||
hi Normal ctermbg=none " Set a transparent background
|
hi Normal ctermbg=none " Set a transparent background
|
||||||
let g:airline_gruvbox_bg='dark' " Set the airline background
|
let g:airline_nord_bg='dark' " Set the airline background
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" Transparent editing of gpg encrypted files.
|
" Transparent editing of gpg encrypted files.
|
||||||
|
@ -192,12 +192,13 @@ vim_configurable.customize {
|
||||||
airline # Lean & mean status/tabline for vim that's light as air
|
airline # Lean & mean status/tabline for vim that's light as air
|
||||||
ctrlp # Full path fuzzy file, buffer, mru, tag, ... finder for Vim
|
ctrlp # Full path fuzzy file, buffer, mru, tag, ... finder for Vim
|
||||||
ghc-mod-vim # Happy Haskell programming on Vim, powered by ghc-mod
|
ghc-mod-vim # Happy Haskell programming on Vim, powered by ghc-mod
|
||||||
gruvbox
|
gruvbox # Install the gruvbox theme
|
||||||
neco-ghc # Completion plugin for Haskell, using ghc-mod
|
neco-ghc # Completion plugin for Haskell, using ghc-mod
|
||||||
neocomplete-vim # Keyword completion system
|
neocomplete-vim # Keyword completion system
|
||||||
nerdcommenter # Comment functions so powerful—no comment necessary
|
nerdcommenter # Comment functions so powerful—no comment necessary
|
||||||
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
|
||||||
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