Skip to content

Commit

Permalink
feat(vim): set termguicolors and colorscheme
Browse files Browse the repository at this point in the history
Enable `termguicolors` if terminal supports it and set colorscheme to
`zaibatsu`.
  • Loading branch information
kirillmorozov committed Jul 6, 2024
1 parent e91cad4 commit 6f2e990
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions vim/.vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ syntax enable
filetype plugin indent on

colorscheme default
if has("termguicolors")
set termguicolors
colorscheme zaibatsu
endif

" Show tabs, multiple consecutive spaces, trailing spaces and breaks
set list
Expand Down

0 comments on commit 6f2e990

Please sign in to comment.