Vim: Switch to Breeze Dark colors

This commit is contained in:
Salt 2020-06-01 01:33:59 -05:00
parent db3645ed11
commit ea42c4f700
3 changed files with 8 additions and 2 deletions

3
.gitmodules vendored
View File

@ -49,3 +49,6 @@
[submodule ".firestarter"] [submodule ".firestarter"]
path = .firestarter path = .firestarter
url = git@git.9iron.club:salt/firestarter url = git@git.9iron.club:salt/firestarter
[submodule ".vim/bundle/breezy"]
path = .vim/bundle/breezy
url = https://github.com/fneu/breezy

1
.vim/bundle/breezy Submodule

@ -0,0 +1 @@
Subproject commit 453167dc346f39e51141df4fe7b17272f4833c2b

6
.vimrc
View File

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