해뜨기전에자자

vscode neovim 설정 본문

개발/linux & tools

vscode neovim 설정

조앙'ㅁ' 2022. 10. 11. 08:10

현재 vscode에서 설치되는 neovim 플러그인의 버전은 v0.0.89인데 이 경우 한글 설정에 문제가 있다.

최신 빌드로 쓰거나 0v.0.88로 빌드해서 쓰면 문제가 없다. (둘 다 확인함)

아래와 같이 세팅해서 쓸 수 있다. 
```
git clone https://github.com/vscode-neovim/vscode-neovim.git
# install deps
npm install

# build
npx vsce package -o vscode-neovim.vsix 
```

`cmd + shift + p` > `Extensions: Install from VSIX` 에 빌드한 vsix 파일을 이용하여 설치

## vscode-neovim setting
로컬에 neovim 설치 후
```
brew install neovim
```

vscode 에 아래 설정 추가해주면 됨
```
"vscode-neovim.neovimExecutablePaths.darwin": "/opt/homebrew/bin/nvim",
```