diff options
| author | jdhao <jdhao@hotmail.com> | 2020-07-29 22:22:20 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-29 22:22:20 +0800 |
| commit | 1902646933e426cf20e3a365bd1402094e2966ff (patch) | |
| tree | ed6225137ea9fc5622a433fb67b749f63674b822 | |
| parent | 4132180dd4742fcf603195a775e216a43f833413 (diff) | |
update plugin settings (leaderf and semshi)
| -rw-r--r-- | plugins.vim | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/plugins.vim b/plugins.vim index 384ef9d..1e187ab 100644 --- a/plugins.vim +++ b/plugins.vim @@ -55,7 +55,9 @@ Plug 'Shougo/neco-vim', { 'for': 'vim' } Plug 'davidhalter/jedi-vim', { 'for': 'python' } " Python syntax highlighting and more -Plug 'numirias/semshi', { 'do': ':UpdateRemotePlugins' } +if g:is_mac || g:is_win + Plug 'numirias/semshi', { 'do': ':UpdateRemotePlugins' } +endif " Python indent (follows the PEP8 style) Plug 'Vimjas/vim-python-pep8-indent', {'for': 'python'} @@ -466,6 +468,11 @@ let g:Lf_WildIgnore = { \ '*.rmvb'] \} +" Do not show fancy icons for Linux server. +if g:is_linux + let g:Lf_ShowDevIcons = 0 +endif + " Search files in popup window nnoremap <silent> <leader>f :Leaderf file --popup<CR> "}} |
