-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_vimrc.plugins
More file actions
77 lines (57 loc) · 1.53 KB
/
dot_vimrc.plugins
File metadata and controls
77 lines (57 loc) · 1.53 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
" Initialize plugins support {{{
call plug#begin('~/.vim/plugged')
" }}}
" Shared Plugins {{{
" chezmoi plugin must be loaded early, before other syntax or filetype plugins
Plug 'alker0/chezmoi.vim'
" General
Plug 'tpope/vim-surround'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-unimpaired'
Plug 'kana/vim-textobj-user' | Plug 'kana/vim-textobj-entire' | Plug 'kana/vim-textobj-indent'
Plug 'junegunn/fzf' | Plug 'junegunn/fzf.vim'
Plug 'vim-airline/vim-airline' | Plug 'vim-airline/vim-airline-themes'
" Color Schemes
Plug 'cocopon/iceberg.vim'
Plug 'tomasr/molokai'
Plug 'sjl/badwolf'
" General Programming
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-fugitive'
if !has('nvim-0.9')
Plug 'editorconfig/editorconfig-vim'
endif
" Configuration Files
Plug 'cespare/vim-toml'
Plug 'fladson/vim-kitty'
" Programming Languages
Plug 'elzr/vim-json'
Plug 'leafgarland/typescript-vim'
Plug 'kchmck/vim-coffee-script'
Plug 'fatih/vim-go'
Plug 'rust-lang/rust.vim'
Plug 'derekwyatt/vim-scala'
Plug 'derekwyatt/vim-sbt'
" Markup Languages
Plug 'tpope/vim-markdown'
Plug 'kpitt/vim-liquid'
Plug 'mattn/emmet-vim'
" Miscellaneous
Plug 'davidoc/taskpaper.vim'
Plug 'PProvost/vim-ps1'
" }}}
" NeoVim Plugins {{{
if has('nvim')
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
Plug 'nvim-treesitter/playground'
endif
" }}}
" Use local plugins config if available {{{
if filereadable(expand("~/.vimrc.plugins.local"))
source ~/.vimrc.plugins.local
endif
" }}}
" Apply plugins {{{
call plug#end()
" }}}
" vim:foldmethod=marker:foldlevel=0