Commit Wallpaper and new .vimrc

This commit is contained in:
Leon Grünewald 2020-07-29 15:05:31 +02:00
parent 2c59a1b15f
commit 835b901983
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' " - Avoid using standard Vim directory names like 'plugin'
call plug#begin('~/.vim/plugged') call plug#begin('~/.vim/plugged')
"" Gitvimbim Wrapper "" Editing Helper
" Vim Fudgeitive " Vim Multiple Cursors
Plug 'tpope/vim-fugitive' Plug 'terryma/vim-multiple-cursors'
Plug 'shumphrey/fugitive-gitlab.vim'
Plug 'borissov/fugitive-gitea' " Vim Surround: Quickly surround stuff
Plug 'tpope/vim-surround'
"" Coding Assistance "" Coding Assistance
" Ale: Runs fast and works well. " Ale: Runs fast and works well.
@ -46,9 +47,6 @@ Plug 'fholgado/minibufexpl.vim'
" Airline: Some file infos " Airline: Some file infos
Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline'
"" AutoComplPop: Open the popup menu for autocompletion
Plug 'vim-scripts/AutoComplPop'
"" Indexing "" Indexing
" ctrlp.vim: Quickly find files by name without navigating " ctrlp.vim: Quickly find files by name without navigating
Plug 'kien/ctrlp.vim' Plug 'kien/ctrlp.vim'
@ -56,10 +54,6 @@ Plug 'kien/ctrlp.vim'
" Ferret: Quickly finds file content " Ferret: Quickly finds file content
Plug 'wincent/ferret' Plug 'wincent/ferret'
"" Input optimization
" Vim Surround: Quickly surround stuff
Plug 'tpope/vim-surround'
" Initialize plugin system " Initialize plugin system
call plug#end() call plug#end()