1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

update plugin settings (leaderf and semshi)

This commit is contained in:
jdhao 2020-07-29 22:22:20 +08:00 committed by GitHub
parent 4132180dd4
commit 1902646933
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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>
"}}