Vim: Switch to Nord

This commit is contained in:
Salt 2019-06-06 18:08:54 -05:00
parent a0b7f342a7
commit a54c72a9d6
4 changed files with 6 additions and 4 deletions

3
.gitmodules vendored
View File

@ -43,3 +43,6 @@
[submodule ".vim/bundle/tabline.vim"] [submodule ".vim/bundle/tabline.vim"]
path = .vim/bundle/tabline.vim path = .vim/bundle/tabline.vim
url = https://github.com/mkitt/tabline.vim url = https://github.com/mkitt/tabline.vim
[submodule ".vim/bundle/nord-vim"]
path = .vim/bundle/nord-vim
url = https://github.com/arcticicestudio/nord-vim

1
.vim/bundle/nord-vim Submodule

@ -0,0 +1 @@
Subproject commit 311d964d3ae0063b4394eae1bac5559d4fd717b1

@ -1 +0,0 @@
Subproject commit 528a59f26d12278698bb946f8fb82a63711eec21

5
.vimrc
View File

@ -2,8 +2,7 @@ execute pathogen#infect()
" Theming " Theming
if $TERM != 'linux' if $TERM != 'linux'
set background=dark colorscheme nord
colorscheme solarized
endif endif
syntax on syntax on
@ -32,7 +31,7 @@ let g:lightline = {
\ 'charvaluehex': 'char: 0x%B' \ 'charvaluehex': 'char: 0x%B'
\ }, \ },
\} \}
let g:lightline.colorscheme = 'solarized' let g:lightline.colorscheme = 'nord'
" Automatically read when a file is changed outside of Vim " Automatically read when a file is changed outside of Vim
set autoread set autoread