🎨 📌 add vim-emoji plugin
This commit is contained in:
parent
7b564a3a4c
commit
f9c4e19588
1 changed files with 8 additions and 0 deletions
|
|
@ -14,6 +14,7 @@ Plug 'preservim/nerdtree' " file tree
|
|||
Plug 'jreybert/vimagit' " git diffing with :Magit
|
||||
Plug 'lukesmithxyz/vimling' " toggle deadkeys, IPA, prose-mode
|
||||
Plug 'junegunn/goyo.vim' " prose mode but better
|
||||
Plug 'junegunn/vim-emoji' " emoji in vim
|
||||
Plug 'vimwiki/vimwiki' " take notes in vimwiki
|
||||
Plug 'michal-h21/vimwiki-sync' " sync notes to git repo
|
||||
Plug 'itchyny/calendar.vim' " integrate calendar into vimwiki (todo)
|
||||
|
|
@ -37,6 +38,13 @@ set listchars=tab:→\ ,nbsp:␣,trail:•,precedes:«,extends:»
|
|||
" set listchars=tab:→\ ,trail:␣,extends:…,eol:⏎
|
||||
|
||||
|
||||
" vim-emoji setup
|
||||
let g:gitgutter_sign_added = emoji#for('small_blue_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_modified_removed = emoji#for('collision')
|
||||
|
||||
|
||||
" syntastic recommended settings
|
||||
set statusline+=%#warningmsg#
|
||||
set statusline+=%{SyntasticStatuslineFlag()}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue