Merge branch 'master' of ssh://git.doggoat.de:42/dhalucario/devconf

This commit is contained in:
Leon Grünewald 2020-07-31 21:15:17 +02:00
commit a91943d079
2 changed files with 6 additions and 12 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 MiB

After

Width:  |  Height:  |  Size: 6.3 MiB

18
.vimrc
View file

@ -9,11 +9,12 @@ endif
" - Avoid using standard Vim directory names like 'plugin'
call plug#begin('~/.vim/plugged')
"" Gitvimbim Wrapper
" Vim Fudgeitive
Plug 'tpope/vim-fugitive'
Plug 'shumphrey/fugitive-gitlab.vim'
Plug 'borissov/fugitive-gitea'
"" Editing Helper
" Vim Multiple Cursors
Plug 'terryma/vim-multiple-cursors'
" Vim Surround: Quickly surround stuff
Plug 'tpope/vim-surround'
"" Coding Assistance
" Ale: Runs fast and works well.
@ -46,9 +47,6 @@ Plug 'fholgado/minibufexpl.vim'
" Airline: Some file infos
Plug 'vim-airline/vim-airline'
"" AutoComplPop: Open the popup menu for autocompletion
Plug 'vim-scripts/AutoComplPop'
"" Indexing
" ctrlp.vim: Quickly find files by name without navigating
Plug 'kien/ctrlp.vim'
@ -56,10 +54,6 @@ Plug 'kien/ctrlp.vim'
" Ferret: Quickly finds file content
Plug 'wincent/ferret'
"" Input optimization
" Vim Surround: Quickly surround stuff
Plug 'tpope/vim-surround'
" Initialize plugin system
call plug#end()