vim: plugins sortiert

This commit is contained in:
Michael Grote 2021-08-12 13:30:31 +02:00
parent 6e13e52c19
commit c5b648088e

22
.vimrc
View file

@ -6,27 +6,29 @@ set rtp+=~/.vim/bundle/Vundle.vim
" Download plug-ins to the ~/.vim/plugged/ directory
call vundle#begin('~/.vim/plugged')
" Let Vundle manage Vundle; muss immer der erste eintrag sein
Plugin 'VundleVim/Vundle.vim'
Plugin 'nestorsalceda/vim-strip-trailing-whitespaces'
" entferne trailing whitespaces
Plugin 'itchyny/lightline.vim'
Plugin 'nestorsalceda/vim-strip-trailing-whitespaces'
" statusline
Plugin 'sheerun/vim-polyglot'
Plugin 'itchyny/lightline.vim'
" languagepack
Plugin 'jeetsukumaran/vim-buffergator'
Plugin 'sheerun/vim-polyglot'
" buffer wechseln
Plugin 'mhinz/vim-signify'
Plugin 'jeetsukumaran/vim-buffergator'
" change icons neben der zeilennummerierung
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'mhinz/vim-signify'
" fuzzy finder
Plugin 'Yggdroot/indentLine'
Plugin 'ctrlpvim/ctrlp.vim'
" einrückungsmarkierungen
Plugin 'tpope/vim-fugitive'
Plugin 'Yggdroot/indentLine'
" git integration G:
Plugin 'jreybert/vimagit'
Plugin 'tpope/vim-fugitive'
" git integration
Plugin 'tpope/vim-sleuth'
Plugin 'jreybert/vimagit'
" auto einrueckung
Plugin 'tpope/vim-sleuth'
call vundle#end()