diff options
Diffstat (limited to '')
-rw-r--r-- | nvim/.config/nvim/init.vim | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/nvim/.config/nvim/init.vim b/nvim/.config/nvim/init.vim index 73562ff..11b67d6 100644 --- a/nvim/.config/nvim/init.vim +++ b/nvim/.config/nvim/init.vim @@ -42,6 +42,49 @@ Plugin 'scrooloose/nerdtree' " NERDTree git plugin Plugin 'Xuyuanp/nerdtree-git-plugin' +" Global Auto Completion +Plugin 'ajh17/VimCompletesMe' + +" PHP Auto Completion +Plugin 'shawncplus/phpcomplete.vim' + +" Better syntax and highlighting +Plugin 'pangloss/vim-javascript' + +" Better Json +Plugin 'elzr/vim-json' + +" Syntax checker +Plugin 'scrooloose/syntastic' + +" Git command managament from nvim +"Plugin 'tpope/vim-fugitive' + +" Git plugin of fugitive plugin for view log of git +Plugin 'gregsexton/gitv' + +" View tree of the file historic +Plugin 'mbbill/undotree' + +" Ack search tool +" Read more here : https://github.com/mileszs/ack.vim#can-i-use-ag-the-silver-searcher-with-this +Plugin 'mileszs/ack.vim' + +" matchit +Plugin 'isa/vim-matchit' + +" Unicode + Plugin 'chrisbra/unicode.vim' + +" Colorize text for exemple #fff +Plugin 'lilydjwg/colorizer' + +" html5 +Plugin 'othree/html5.vim' + +" Markdon hightlighting +Plugin 'gabrielelana/vim-markdown' + " After all plugins... call vundle#end() filetype plugin indent on |