diff options
author | Yigit Sever | 2020-10-11 14:56:15 +0300 |
---|---|---|
committer | Yigit Sever | 2020-10-11 14:56:15 +0300 |
commit | 05960e55782fe98d586c4ab32cb9760135957527 (patch) | |
tree | 2a0740ce8b62a03ee78160f1948afdacefb2590f | |
parent | a61f992d5b01745f94c643d3b39e98e49c55d0ea (diff) | |
download | dotfiles-05960e55782fe98d586c4ab32cb9760135957527.tar.gz dotfiles-05960e55782fe98d586c4ab32cb9760135957527.tar.bz2 dotfiles-05960e55782fe98d586c4ab32cb9760135957527.zip |
devicons and float_preview
-rwxr-xr-x | .config/nvim/init.vim | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index d451e86..b8f40de 100755 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim | |||
@@ -27,9 +27,7 @@ Plug 'janko/vim-test' | |||
27 | Plug 'jpalardy/vim-slime' | 27 | Plug 'jpalardy/vim-slime' |
28 | " snippets to expand | 28 | " snippets to expand |
29 | Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets' | 29 | Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets' |
30 | " autopair plugin, lexima is customizable? TODO try lexima out, then delete me | 30 | Plug 'tmsvg/pear-tree' |
31 | " Plug 'tmsvg/pear-tree' | ||
32 | Plug 'cohama/lexima.vim' | ||
33 | " language packs | 31 | " language packs |
34 | Plug 'sheerun/vim-polyglot' | 32 | Plug 'sheerun/vim-polyglot' |
35 | " git diff in the sign column | 33 | " git diff in the sign column |
@@ -278,6 +276,9 @@ endif | |||
278 | 276 | ||
279 | set diffopt=algorithm:patience | 277 | set diffopt=algorithm:patience |
280 | 278 | ||
279 | let g:float_preview#docked = 1 | ||
280 | set completeopt = "menu" | ||
281 | |||
281 | " }}} | 282 | " }}} |
282 | 283 | ||
283 | "{{{Look and Feel | 284 | "{{{Look and Feel |
@@ -505,5 +506,8 @@ let g:slime_no_mappings = 1 | |||
505 | nmap <c-CR> <Plug>SlimeParagraphSend | 506 | nmap <c-CR> <Plug>SlimeParagraphSend |
506 | " }}} Slime | 507 | " }}} Slime |
507 | 508 | ||
508 | let g:float_preview#docked = 1 | 509 | " devicons {{{ " |
509 | set completeopt = "menu" | 510 | let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols = {} " needed |
511 | let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols['wiki'] = '📔' | ||
512 | " }}} devicons " | ||
513 | |||