From c5b648088e84fa26e80ee2591ae5a3f7f1ec629e Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Thu, 12 Aug 2021 13:30:31 +0200 Subject: [PATCH] vim: plugins sortiert --- .vimrc | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.vimrc b/.vimrc index 0d32186..2c77e40 100644 --- a/.vimrc +++ b/.vimrc @@ -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()