Put comments above Plugins

This commit is contained in:
flyingscorpio@pinebookpro 2020-09-10 11:26:18 +02:00
parent 0e1872aea5
commit fb981c1edc

View file

@ -26,29 +26,42 @@ filetype off
set rtp+=~/.vim/bundle/Vundle.vim set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin() 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 " AUTOCOMPLETION, FORMATTING AND LINTING
Plugin 'ycm-core/YouCompleteMe' " Main autocompletion " Main autocompletion
Plugin 'nvie/vim-flake8' " PEP8 linting for Python Plugin 'ycm-core/YouCompleteMe'
Plugin 'dense-analysis/ale' " Vim integration for various linters " PEP8 linting for Python
Plugin 'psf/black' " Black autoformatter for Python Plugin 'nvie/vim-flake8'
" Vim integration for various linters
Plugin 'dense-analysis/ale'
" Black autoformatter for Python
Plugin 'psf/black'
" HIGHLIGHTING " HIGHLIGHTING
Plugin 'ntpeters/vim-better-whitespace' " Whitespace highlighting and removal " Whitespace highlighting and removal
Plugin 'python-mode/python-mode' " Python syntax highlighting Plugin 'ntpeters/vim-better-whitespace'
Plugin 'c.vim' " C syntax highlighting " Python IDE
Plugin 'rust-lang/rust.vim' " Rust syntax highlighting Plugin 'python-mode/python-mode'
Plugin 'godlygeek/tabular' | Plugin 'plasticboy/vim-markdown' " Markdown syntax highlighting " 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 " STATUSLINE
Plugin 'vim-airline/vim-airline' Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes' Plugin 'vim-airline/vim-airline-themes'
" MISC. " MISC.
Plugin 'preservim/nerdtree' " A tree explorer plugin " A tree explorer plugin
Plugin 'Xuyuanp/nerdtree-git-plugin' " A NERDTree plugin showing git status Plugin 'preservim/nerdtree'
Plugin 'Yggdroot/indentLine' " Display thin vertical lines at each indentation level " 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() call vundle#end()
filetype plugin indent on filetype plugin indent on