Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -333,8 +333,10 @@ nnoremap <silent> <Leader>. :redraw!<CR>

" Define list of plugins to be installed
silent call plug#begin() " Suppress error message if git is not installed
Plug 'https://github.com/cespare/vim-toml',
\ { 'branch': 'main' }
if version <= 802
Plug 'https://github.com/cespare/vim-toml',
\ { 'branch': 'main' }
endif
Plug 'https://github.com/christoomey/vim-tmux-navigator'
Plug 'https://github.com/ctrlpvim/ctrlp.vim'
Plug 'https://github.com/davidhalter/jedi-vim'
Expand Down Expand Up @@ -364,7 +366,9 @@ Plug 'https://github.com/sirtaj/vim-openscad'
Plug 'https://github.com/SirVer/ultisnips'
Plug 'https://github.com/smkent/vim-pipe-preview',
\ { 'branch': 'main' }
Plug 'https://github.com/stephpy/vim-yaml'
if version <= 802
Plug 'https://github.com/stephpy/vim-yaml'
endif
Plug 'https://github.com/tomtom/tcomment_vim'
Plug 'https://github.com/tpope/vim-dispatch'
Plug 'https://github.com/tpope/vim-fugitive'
Expand Down