Try out some colors...
This commit is contained in:
parent
3a7a94ed34
commit
0589a622de
5 changed files with 68 additions and 38 deletions
14
vim/.vimrc
14
vim/.vimrc
|
@ -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://.*']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue