diff options
-rw-r--r-- | coc-settings.json | 2 | ||||
-rw-r--r-- | general/settings.vim | 2 | ||||
-rw-r--r-- | keys/which-key.vim | 1 | ||||
-rw-r--r-- | plug-config/neovide.vim | 3 | ||||
-rw-r--r-- | vim-plug/plugins.vim | 2 |
5 files changed, 6 insertions, 4 deletions
diff --git a/coc-settings.json b/coc-settings.json index a786ae4f..c4b820a9 100644 --- a/coc-settings.json +++ b/coc-settings.json @@ -23,7 +23,7 @@ "reference": " ", "keyword": " ", "file": " ", - "folder": " ﱮ", + "folder": " ﱮ ", "color": " ", "unit": " 塞 ", "snippet": " ", diff --git a/general/settings.vim b/general/settings.vim index 7d9ae1aa..b94676d6 100644 --- a/general/settings.vim +++ b/general/settings.vim @@ -35,7 +35,7 @@ set updatetime=300 " Faster completion set timeoutlen=100 " By default timeoutlen is 1000 ms set clipboard=unnamedplus " Copy paste between vim and everything else set incsearch -set guifont=JetBrainsMono\ Nerd\ Font +set guifont=JetBrainsMono\ Nerd\ Font\ Mono " New stuff " set notimeout nottimeout diff --git a/keys/which-key.vim b/keys/which-key.vim index f9759637..76fa40f4 100644 --- a/keys/which-key.vim +++ b/keys/which-key.vim @@ -185,6 +185,7 @@ let g:which_key_map.m = { " \ } " \ 's' : [':Snippets' , 'snippets'], +" TODO fix FZF preview or just move to Telescope " s is for search let g:which_key_map.s = { \ 'name' : '+search' , diff --git a/plug-config/neovide.vim b/plug-config/neovide.vim index ea59f593..4bdc2e24 100644 --- a/plug-config/neovide.vim +++ b/plug-config/neovide.vim @@ -1,4 +1,5 @@ -set guifont=FiraCode\ Nerd\ Font\ Mono:h22 +" set guifont=FiraCode\ Nerd\ Font\ Mono:h22 +set guifont=JetBrainsMono\ Nerd\ Font\ Mono:h22 " set guifont=Hack\ Nerd\ Font:h22 " set guifont=Noto\ Color\ Emoji:h22 diff --git a/vim-plug/plugins.vim b/vim-plug/plugins.vim index 23e75f42..91486a88 100644 --- a/vim-plug/plugins.vim +++ b/vim-plug/plugins.vim @@ -59,7 +59,7 @@ call plug#begin('~/.config/nvim/autoload/plugged') Plug 'kevinhwang91/rnvimr' " FZF Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } - Plug 'yuki-ycino/fzf-preview.vim', { 'branch': 'release/remote', 'do': ':UpdateRemotePlugins' } + " Plug 'yuki-ycino/fzf-preview.vim', { 'branch': 'release', 'do': ':UpdateRemotePlugins' } Plug 'junegunn/fzf.vim' " Git Plug 'airblade/vim-gitgutter' |