-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathvimrc.bundles
More file actions
27 lines (24 loc) · 738 Bytes
/
vimrc.bundles
File metadata and controls
27 lines (24 loc) · 738 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
27
call plug#begin('~/.vim/bundle')
" Define bundles via Github repos
Plug 'itchyny/lightline.vim'
Plug 'airblade/vim-gitgutter'
Plug 'tpope/vim-fugitive'
Plug 'scrooloose/nerdcommenter'
Plug 'easymotion/vim-easymotion'
Plug 'scrooloose/nerdtree'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'terryma/vim-multiple-cursors'
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
Plug 'editorconfig/editorconfig-vim'
Plug 'dracula/vim'
Plug 'honza/vim-snippets'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'mattn/emmet-vim'
Plug 'dart-lang/dart-vim-plugin'
Plug 'github/copilot.vim'
call plug#end()
" Local config
if filereadable($HOME . "/.vimrc.bundles.local")
source ~/.vimrc.bundles.local
endif