-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.plugins.vim
More file actions
97 lines (73 loc) · 1.94 KB
/
.plugins.vim
File metadata and controls
97 lines (73 loc) · 1.94 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
" Specify a directory for plugins
call plug#begin('~/.vim/plugged')
" Make sure you use single quotes
" On-demand loading
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
"Plug 'tpope/vim-vinegar'
Plug 'francoiscabrol/ranger.vim'
Plug 'rbgrouleff/bclose.vim'
" Asynchronous execution library for Vim
Plug 'Shougo/vimproc.vim', {'do' : 'make'}
" Syntax HighLighting
Plug 'leafgarland/typescript-vim'
Plug 'elzr/vim-json'
" Others
Plug 'yardnsm/vim-import-cost', { 'do': 'npm install' }
" Prettier
Plug 'prettier/vim-prettier', { 'do': 'yarn install' }
" Airline
Plug 'bling/vim-airline'
" Nerdcommenter
Plug 'scrooloose/nerdcommenter'
" Plugins for TypeScript
Plug 'Quramy/tsuquyomi'
" Fuzzy finder
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
Plug 'jremmen/vim-ripgrep'
" Dev icons
Plug 'ryanoasis/vim-devicons'
" Themes changing
Plug 'flazz/vim-colorschemes'
" Replace with esteroides
Plug 'tpope/vim-abolish'
" Haskell
Plug 'w0rp/ale'
Plug 'alx741/vim-hindent'
Plug 'itchyny/vim-haskell-indent'
Plug 'Shougo/vimproc'
Plug 'vim-scripts/haskell.vim'
" Elm
Plug 'elmcast/elm-vim'
" Editor config
Plug 'editorconfig/editorconfig-vim'
" Surround
Plug 'tpope/vim-surround'
" Git
Plug 'airblade/vim-gitgutter'
Plug 'tpope/vim-fugitive'
" Clojure
Plug 'vim-scripts/VimClojure'
Plug 'tpope/vim-fireplace'
Plug 'venantius/vim-cljfmt'
Plug 'guns/vim-sexp'
Plug 'tpope/vim-sexp-mappings-for-regular-people'
Plug 'luochen1990/rainbow'
Plug 'tpope/vim-salve'
Plug 'tpope/vim-projectionist'
Plug 'tpope/vim-dispatch'
" org-mode
Plug 'jceb/vim-orgmode'
Plug 'tpope/vim-speeddating'
" Vue
Plug 'posva/vim-vue'
" PureScript
Plug 'purescript-contrib/purescript-vim', { 'for': ['purescript', 'purs'] }
Plug 'FrigoEU/psc-ide-vim', { 'for': ['purescript', 'purs'] }
" The trial
Plug 'rhysd/git-messenger.vim'
Plug 'jiangmiao/auto-pairs'
Plug 'tpope/vim-repeat'
Plug 'metakirby5/codi.vim'
" Initialize plugin system
call plug#end()