-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpluginCall.vim
44 lines (44 loc) · 1.1 KB
/
pluginCall.vim
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
call plug#begin()
" <Ctr-e> opens a tree to find folders
Plug 'scrooloose/nerdtree'
" Closes ( { [
Plug 'tylerbrazier/vim-bracepair'
" Syntax for solidity language
Plug 'tomlion/vim-solidity'
" Solidity compile with truffle (need truffle installed)
Plug 'dmdque/solidity.vim'
" Add color to ( { [
Plug 'kien/rainbow_parentheses.vim'
" Syntax for haskell language
Plug 'neovimhaskell/haskell-vim'
" Color scheme, not in use!
Plug 'jacoborus/tender.vim'
" Color scheme
Plug 'victorze/foo'
" Format Code (beautifier)
Plug 'sbdchd/neoformat'
" Color sheme
Plug 'morhetz/gruvbox'
" Plugin para XML
Plug 'othree/xml.vim'
" Plugin para JSON
Plug 'elzr/vim-json'
" Kotlin
Plug 'udalov/kotlin-vim'
" Autocomplete
" Plug 'valloric/youcompleteme'
" JavaScript Sytnax
Plug 'pangloss/vim-javascript'
" Status bar
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
" html and css code
Plug 'mattn/emmet-vim'
Plug 'hail2u/vim-css3-syntax'
" Show colors preview in css
Plug 'gko/vim-coloresque'
" Discord
" Plug 'aurieh/discord.nvim', { 'do': ':UpdateRemotePlugins'}
" RDF for Vim
Plug 'niklasl/vim-rdf'
call plug#end()