From f64792814f04076ddbbbd04c95318685131f0198 Mon Sep 17 00:00:00 2001 From: neodarz Date: Mon, 7 May 2018 20:14:22 +0200 Subject: Add some comments --- nvim/.config/nvim/init.vim | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) (limited to 'nvim') diff --git a/nvim/.config/nvim/init.vim b/nvim/.config/nvim/init.vim index 46a53f7..6073ea4 100644 --- a/nvim/.config/nvim/init.vim +++ b/nvim/.config/nvim/init.vim @@ -5,6 +5,7 @@ filetype off set rtp+=~/.config/nvim/bundle/Vundle.vim call vundle#begin('~/.config/nvim/bundle') +" Plugin manager Plugin 'VundleVim/Vundle.vim' " Custom plugins... @@ -70,13 +71,13 @@ Plugin 'mileszs/ack.vim' " matchit "Plugin 'isa/vim-matchit' -" Unicode +" Unicode completion Plugin 'chrisbra/unicode.vim' " Colorize text for exemple #fff "Plugin 'lilydjwg/colorizer' -" html5 +" html5 syntax Plugin 'othree/html5.vim' " Markdon hightlighting @@ -85,47 +86,66 @@ Plugin 'othree/html5.vim' " Autoformat "Plugin 'Chiel92/vim-autoformat' +" Quicly form javascript, html and css tool Plugin 'maksimr/vim-jsbeautify' -" rst +" reStructuredText syntax Plugin 'marshallward/vim-restructuredtext' +" Java complete tool Plugin 'artur-shaik/vim-javacomplete2' +" TypeScript syntac Plugin 'leafgarland/typescript-vim' +" TypeScript IDE Plugin 'Quramy/tsuquyomi' +" Linter for TypeScript Plugin 'palantir/tslint' "Plugin 'FredKSchott/CoVim' +" Collaborative vim tool Plugin 'makerforceio/CoVim' +" Twig syntax for vim Plugin 'lumiliet/vim-twig' +" Expanding abbreviations similar to emmet Plugin 'mattn/emmet-vim' +" Scss syntax for vim Plugin 'cakebaker/scss-syntax.vim' +" Silver searcher for vim Plugin 'gabesoft/vim-ags' +" Tool for fix PHP coding standards issues Plugin 'stephpy/vim-php-cs-fixer' +" French Correction tool Plugin 'dpelle/vim-Grammalecte' +" Search file in folder Plugin 'https://github.com/ctrlpvim/ctrlp.vim.git' +" Browse tags of the current file Plugin 'majutsushi/tagbar' +" CakePHP vim support Plugin 'ndreynolds/vim-cakephp' +" Auto convert rtf, rtfd, doc or wordml to plain text Plugin 'vim-scripts/textutil.vim' +" Multiple cursors Plugin 'terryma/vim-multiple-cursors' +" Syntax for TOML Plugin 'cespare/vim-toml' +" Some icons for NerdTree or other Plugin 'ryanoasis/vim-devicons' -- cgit v1.2.1