Try out some colors...

This commit is contained in:
Andrew Tomaka 2022-09-15 22:52:12 -04:00
parent 3a7a94ed34
commit 0589a622de
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE
5 changed files with 68 additions and 38 deletions

View file

@ -18,6 +18,9 @@ Plug 'rust-lang/rust.vim'
Plug 'tpope/vim-rails'
Plug 'vim-ruby/vim-ruby'
" colors
Plug 'morhetz/gruvbox'
call plug#end()
" STATUS LINE
@ -124,6 +127,17 @@ autocmd BufNewFile,BufRead *.tftpl :set filetype=terraform
" other
map <Leader>fj :%!jq .<cr>
" COLOR CONFIGURATION
colorscheme gruvbox
" NONE is case sensitive in vim here (but not nvim)
autocmd ColorScheme * hi Normal ctermbg=NONE guibg=NONE
function! ChangeBackground()
let &background=readfile(glob("~/.config/atomaka/color.yml"))[0]
endfunction
call ChangeBackground()
" PLUGIN CONFIGURATION
" editorconfig-vim
let g:EditorConfig_exclude_patterns = ['fugitive://.*', 'scp://.*']