IdeaVim 설정하기
이거라도 쓰는 수 밖에 없다
vim
set options
모든 set 옵션은 set-commands에서 볼 수 있다.
ideavimdm은 vim 플러그인을 그대로 사용할 수 없으므로, 유명한 플러그인의 에뮬레이션을 제공하기도 한다.
set ideamarks " global 마크를 IntelliJ의 북마크 기능으로 사용한다.
set surround " tim pope의 vim-surround 에뮬레이션 기능 사용.
set commentary " tim pope의 commentary.vim 에뮬레이션 기능 사용.
action 호출 설정
" tabbar와 비슷한 느낌으로 사용할 수 있다
nnoremap \t :action ActivateStructureToolWindow<CR>
" startify와 비슷한 느낌으로 최근 프로젝트 이동을 할 수 있다
nnoremap \s :action ManageRecentProjects<CR>