From fb981c1edc8517b628d9305afc8190f95b594792 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@pinebookpro" Date: Thu, 10 Sep 2020 11:26:18 +0200 Subject: [PATCH] Put comments above Plugins --- dotfiles/vim/vimrc | 39 ++++++++++++++++++++++++++------------- 1 file changed, 26 insertions(+), 13 deletions(-) diff --git a/dotfiles/vim/vimrc b/dotfiles/vim/vimrc index 0755bb0..fde81b7 100644 --- a/dotfiles/vim/vimrc +++ b/dotfiles/vim/vimrc @@ -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