1 | brew install neovim/neovim/neovim |
만약 .config
디렉터리가 있다면 실패하게된다 이때는 레포에 직접 접속해서 .config/nvim/init.vim
을 들고와서 넣어준다.
특정 폰트를 사용해야만 깨짐이 없으므로 패치된 폰트를 아래서 하나 받아 설치하고 iTerm2의 Non-ASCII Font를 설치한 폰트로 설정.
https://github.com/ryanoasis/nerd-fonts 너무 많아서 개인적으로는 그 중에 들어본 폰트를 설치했다.
1 | brew unlink vim |
path문제로 되지 않을 경우 .zshrc
의 PATH
를 수정하면된다
trouble shooting
E902: “eslint” is not an executable
js 파일 수정시 eslint 가 실행되야 하는데 없어서 생기는 문제다.
1 | npm -g install eslint |
requires Vim compiled with Python (2.6+ or 3.3+) support
YouCompleteMe와 같은 플러그인은 파이썬을 필요로한다.
1 | brew install python3 |