Skip to content

Commit e1bb2c7

Browse files
committed
Add a default Vim colorscheme
Before, we had no default Vim `colorscheme`, which left us at the behest of our terminal. We added a `colorscheme` to our Vim configuration to make it more appealing.
1 parent 1a157c6 commit e1bb2c7

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

vimrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ set noswapfile " http://robots.thoughtbot.com/post/18739402579/global-gitigno
1010
set history=50
1111
set ruler " show the cursor position all the time
1212
set showcmd " display incomplete commands
13+
set termguicolors " make our colors pretty
1314
set incsearch " do incremental searching
1415
set laststatus=2 " Always display the status line
1516
set autowrite " Automatically :write before running commands
@@ -170,6 +171,9 @@ set complete+=kspell
170171
" Always use vertical diffs
171172
set diffopt+=vertical
172173

174+
" Use Catpuccin Latte as our default color scheme
175+
colorscheme catppuccin_latte
176+
173177
" Local config
174178
if filereadable($HOME . "/.vimrc.local")
175179
source ~/.vimrc.local

vimrc.bundles

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ else
2929
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
3030
endif
3131

32+
Plug 'catppuccin/vim', { 'as': 'catppuccin' }
3233
Plug 'junegunn/fzf.vim'
3334
Plug 'elixir-lang/vim-elixir'
3435
Plug 'fatih/vim-go'

0 commit comments

Comments
 (0)