dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit d205a71827946f8330b05de0f34c6d96e5ca631f
parent cd9e1e60f3b4beca0d9218d58abc6f75e8b16a26
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Thu, 23 Aug 2018 16:08:42 +0200

Comments explaining vim plugins

Diffstat:
Mdotfiles/vim-config/plugins.vimrc | 15+++++++++++++++
1 file changed, 15 insertions(+), 0 deletions(-)

diff --git a/dotfiles/vim-config/plugins.vimrc b/dotfiles/vim-config/plugins.vimrc @@ -1,10 +1,25 @@ call plug#begin('~/.vim/plugged') +" NERDTree - file browser Plug 'scrooloose/nerdtree' + +" NERD Commenter - simple comment toggling Plug 'scrooloose/nerdcommenter' + +" Emmet - must-have for HTML, awesome snippet expansion Plug 'mattn/emmet-vim' + +" Syntax file etc. for Typescript Plug 'leafgarland/typescript-vim' + +" Sleuth - set tab options based on current file Plug 'tpope/vim-sleuth' + +" Endwise - smart do-end, if-fi, if-end, case-esac, etc. Plug 'tpope/vim-endwise' + +" Visual guides for indent levels Plug 'nathanaelkane/vim-indent-guides' + +" Surround - super useful plugin for surrounding stuff with quotes/brackets/tags Plug 'tpope/vim-surround' call plug#end()