aboutsummaryrefslogtreecommitdiff
path: root/nvim
diff options
context:
space:
mode:
authorneodarz <neodarz@neodarz.net>2018-05-07 20:14:22 +0200
committerneodarz <neodarz@neodarz.net>2018-05-07 20:14:22 +0200
commitf64792814f04076ddbbbd04c95318685131f0198 (patch)
treef8f09bd3deb8dc5f5e748797af14c33268aacd63 /nvim
parentd4ccc29f1b96f2b5b9a73c7f195bc665b203ba78 (diff)
downloaddotfiles_ascii-f64792814f04076ddbbbd04c95318685131f0198.tar.xz
dotfiles_ascii-f64792814f04076ddbbbd04c95318685131f0198.zip
Add some comments
Diffstat (limited to 'nvim')
-rw-r--r--nvim/.config/nvim/init.vim26
1 files changed, 23 insertions, 3 deletions
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'