이 방법은에 심볼릭 링크 ~/.config/nvim
를 시도 ~/.vim
하고 conf와 호환되도록 vim
합니다.
# nvim conf dir: ~/.config/nvim
# vim conf dir: ~/.vim
# link the 1st as the 2nd with relative links
# Prepare a vimrc file in ~/.config/nvim folder
ln -sf ./init.vim ~/.config/nvim/vimrc
# Link the whole ~/.config/nvim folder as ~/.vim foler
ln -sf ./.config/nvim ~/.vim
이 설정 후 ~/.config/nvim/init.vim
conf로 사용 된 실제 파일입니다. ~/.vim/vimrc
그것에 대한 링크 일뿐입니다.
이제 와 를 변경 하여 vim
재사용 nvim
플러그인 관리자 플러그인 을 만들어야 합니다. 실제로 플러그인 경로는 자동으로 재사용되며 다음 수정 사항은 플러그인 관리자를 재사용합니다.runtimepath
packpath
let g:is_nvim = has('nvim')
let g:is_vim8 = v:version >= 800 ? 1 : 0
" Reuse nvim's runtimepath and packpath in vim
if !g:is_nvim && g:is_vim8
set runtimepath-=~/.vim
\ runtimepath^=~/.local/share/nvim/site runtimepath^=~/.vim
\ runtimepath-=~/.vim/after
\ runtimepath+=~/.local/share/nvim/site/after runtimepath+=~/.vim/after
let &packpath = &runtimepath
endif
출처 : vim과 nvim 간 공유 공유
if has('nvim')
nvim 전용 명령에 사용할 수 있습니다