Put comments above Plugins
This commit is contained in:
parent
0e1872aea5
commit
fb981c1edc
1 changed files with 26 additions and 13 deletions
|
@ -26,29 +26,42 @@ filetype off
|
|||
set rtp+=~/.vim/bundle/Vundle.vim
|
||||
call vundle#begin()
|
||||
|
||||
Plugin 'VundleVim/Vundle.vim' " let Vundle manage Vundle, required
|
||||
" let Vundle manage Vundle, required
|
||||
Plugin 'VundleVim/Vundle.vim'
|
||||
|
||||
" AUTOCOMPLETION, FORMATTING AND LINTING
|
||||
Plugin 'ycm-core/YouCompleteMe' " Main autocompletion
|
||||
Plugin 'nvie/vim-flake8' " PEP8 linting for Python
|
||||
Plugin 'dense-analysis/ale' " Vim integration for various linters
|
||||
Plugin 'psf/black' " Black autoformatter for Python
|
||||
" Main autocompletion
|
||||
Plugin 'ycm-core/YouCompleteMe'
|
||||
" PEP8 linting for Python
|
||||
Plugin 'nvie/vim-flake8'
|
||||
" Vim integration for various linters
|
||||
Plugin 'dense-analysis/ale'
|
||||
" Black autoformatter for Python
|
||||
Plugin 'psf/black'
|
||||
|
||||
" HIGHLIGHTING
|
||||
Plugin 'ntpeters/vim-better-whitespace' " Whitespace highlighting and removal
|
||||
Plugin 'python-mode/python-mode' " Python syntax highlighting
|
||||
Plugin 'c.vim' " C syntax highlighting
|
||||
Plugin 'rust-lang/rust.vim' " Rust syntax highlighting
|
||||
Plugin 'godlygeek/tabular' | Plugin 'plasticboy/vim-markdown' " Markdown syntax highlighting
|
||||
" Whitespace highlighting and removal
|
||||
Plugin 'ntpeters/vim-better-whitespace'
|
||||
" Python IDE
|
||||
Plugin 'python-mode/python-mode'
|
||||
" C syntax highlighting
|
||||
Plugin 'c.vim'
|
||||
" Rust syntax highlighting
|
||||
Plugin 'rust-lang/rust.vim'
|
||||
" Markdown syntax highlighting
|
||||
Plugin 'godlygeek/tabular' | Plugin 'plasticboy/vim-markdown'
|
||||
|
||||
" STATUSLINE
|
||||
Plugin 'vim-airline/vim-airline'
|
||||
Plugin 'vim-airline/vim-airline-themes'
|
||||
|
||||
" MISC.
|
||||
Plugin 'preservim/nerdtree' " A tree explorer plugin
|
||||
Plugin 'Xuyuanp/nerdtree-git-plugin' " A NERDTree plugin showing git status
|
||||
Plugin 'Yggdroot/indentLine' " Display thin vertical lines at each indentation level
|
||||
" A tree explorer plugin
|
||||
Plugin 'preservim/nerdtree'
|
||||
" A NERDTree plugin showing git status
|
||||
Plugin 'Xuyuanp/nerdtree-git-plugin'
|
||||
" Display thin vertical lines at each indentation level
|
||||
Plugin 'Yggdroot/indentLine'
|
||||
|
||||
call vundle#end()
|
||||
filetype plugin indent on
|
||||
|
|
Loading…
Add table
Reference in a new issue