blob: 3ab04cbfb94dbabfb7e3b0c1dc1acd3707186ce7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
" this file should only contain colorscheme information, and sourcing it
" should cause colors set by `mode` to update in an existing neovim session
if filereadable(expand("$XDG_DATA_HOME/mode/light"))
colorscheme github-light
else
colorscheme ghdark
endif
source $XDG_CONFIG_HOME/nvim/termcolors.vim
source $XDG_CONFIG_HOME/nvim/lightline.vim
call lightline#colorscheme()
source $XDG_CONFIG_HOME/nvim/color-tweaks.vim
|