iVim 에서 plug-in 관리를 편하게 해주는 pathogen 설치법 정리.

GitHub - tpope/vim-pathogen: pathogen.vim: manage your runtimepath

Installation

  1. iVim에서 명령어 모드로 들어가 :e . 를 수행하고 .vim 디렉토리의 이름을 vim 으로 변경하여 iPad의 파일에서 보이도록 수정.
  • 일반 linux라면 ~/.vim 에서 처리하면 되므로 해당 디렉토리로 이동.
  1. iPad의 파일에서 iVim 디렉토리로 이동하여 이름을 바꾼 vim (.을 제거하여 보이기 시작) 디렉토리에 autoload 디렉토리와 bundle 디렉토리를 생성.
  • 일반 linux라면 ~/.vim 밑에 autoloadbundle디렉토리를 생성.

https://github.com/tpope/vim-pathogen 에서 다운로드 받은 zip파일 압축을 해제한 디렉토리 혹은 직접 다운로드를 통해 얻은 pathogen.vim 파일을 autoload 디렉토리에 복사.

Runtime Path Manupulation

.vimrc 파일에 다음을 추가.

filetype off 
execute pathogen#infect() "call pathogen#infect() 
execute pathogen#helptag() 
syntax on 
filetype plugin indent on 
  • call pathogen#infect()execute pathogen#infect()대신 사용가능함.

Plugin 추가.

앞서 만든 bundle 디렉토리 밑에 vim plugin 이 놓이면 됨.

  1. 일반적으로 github에서 zip으로 다운로드받고 압축을 해제하여 나온 폴더를 통째로 bundle 밑으로 이동시킨후 폴더 이름에서 뒤에 붙은 -master부분을 제거하면 됨.
  2. NERDTree 플러그인의 경우 zip 압축을 해제하면 폴더 명이 nerdtree-master인데 이를 iVim의 경우 이름을 바꾼 vim/bundle 디렉토리 밑으로 이동시키고 nerdtree로 이름을 변경시킴.
  • linux의 경우엔 ~/.vim 밑의 bundle 밑으로 이동시키고 이름을 nerdtree로 바꾸면 됨.

마무리

iVim의 경우, vim디렉토리의 이름을 .vim 으로 다시 바꾸어주면 됨.

반응형

'Computer > ETC' 카테고리의 다른 글

Folder and Directory  (0) 2021.10.17
File 및 관련 필수 명령어(Windows)  (0) 2021.10.17
iVim : iPad용 vi editor  (0) 2021.09.13
gruvbox 설치 : Retro groove color scheme for Vim  (0) 2021.09.11
Git: autocrlf 설정: 개행문자  (0) 2021.09.11

+ Recent posts