📌 🎨 clean plugin section

This commit is contained in:
dannydannydanny 2022-06-11 16:31:04 +02:00
parent f9c4e19588
commit 633e6e2dc9

View file

@ -14,7 +14,6 @@ Plug 'preservim/nerdtree' " file tree
Plug 'jreybert/vimagit' " git diffing with :Magit Plug 'jreybert/vimagit' " git diffing with :Magit
Plug 'lukesmithxyz/vimling' " toggle deadkeys, IPA, prose-mode Plug 'lukesmithxyz/vimling' " toggle deadkeys, IPA, prose-mode
Plug 'junegunn/goyo.vim' " prose mode but better Plug 'junegunn/goyo.vim' " prose mode but better
Plug 'junegunn/vim-emoji' " emoji in vim
Plug 'vimwiki/vimwiki' " take notes in vimwiki Plug 'vimwiki/vimwiki' " take notes in vimwiki
Plug 'michal-h21/vimwiki-sync' " sync notes to git repo Plug 'michal-h21/vimwiki-sync' " sync notes to git repo
Plug 'itchyny/calendar.vim' " integrate calendar into vimwiki (todo) Plug 'itchyny/calendar.vim' " integrate calendar into vimwiki (todo)
@ -23,7 +22,8 @@ Plug 'tpope/vim-commentary' " comment out word / line with 'gc'
Plug 'ap/vim-css-color' " show css colors Plug 'ap/vim-css-color' " show css colors
Plug 'editorconfig/editorconfig-vim' " editor-config extension for vim Plug 'editorconfig/editorconfig-vim' " editor-config extension for vim
Plug 'scrooloose/syntastic' " syntax checker Plug 'scrooloose/syntastic' " syntax checker
Plug 'airblade/vim-gitgutter' " git diff insertions / deletions Plug 'airblade/vim-gitgutter' " show git diff insertions / deletions
Plug 'junegunn/vim-emoji' " emoji autocomplete + emojis in gitgutter
Plug 'rrethy/vim-illuminate' " highlight other uses of the current word under the cursor Plug 'rrethy/vim-illuminate' " highlight other uses of the current word under the cursor
" Plug 'jupyter-vim/jupyter-vim' " one day we'll start using jupyter in vim " Plug 'jupyter-vim/jupyter-vim' " one day we'll start using jupyter in vim
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } " fuzzy-finder Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } " fuzzy-finder
@ -39,6 +39,7 @@ set listchars=tab:→\ ,nbsp:␣,trail:•,precedes:«,extends:»
" vim-emoji setup " vim-emoji setup
set completefunc=emoji#complete
let g:gitgutter_sign_added = emoji#for('small_blue_diamond') let g:gitgutter_sign_added = emoji#for('small_blue_diamond')
let g:gitgutter_sign_modified = emoji#for('small_orange_diamond') let g:gitgutter_sign_modified = emoji#for('small_orange_diamond')
let g:gitgutter_sign_removed = emoji#for('small_red_triangle') let g:gitgutter_sign_removed = emoji#for('small_red_triangle')