-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
27 lines (21 loc) · 953 Bytes
/
.vimrc
File metadata and controls
27 lines (21 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
" Default back to standard shell for vim, since vim doesn't play nicely with fish
if &shell =~# 'fish$'
set shell=sh
endif
" Automatic installation and setup of vim-plug
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
" Specify directory for plugins
call plug#begin('~/.vim/bundle')
" List all vim plugins (ie https://vimawesome.com/)
Plug 'catppuccin/vim', { 'as': 'catppuccin' }
Plug 'sheerun/vim-polyglot'
" Initialize the plugin system
call plug#end()
" ── Theme ────────────────────────────────────────────────────────────────────
set termguicolors
set background=dark
silent! colorscheme catppuccin_mocha