はじめに
SixtyFPSを少しだけ触り始めたのでnvim設定を整えておきます。
環境等
Rust 1.56.1 stable
MacOSX 11.6 (Intel Mac)
SixtyFPS 0.1.5
neovim 0.6.0
sixtyfpsのvim拡張
sixtyfps-vimをインストールする。
init.vim
call plug#begin('~/.config/nvim/plugged')
Plug 'RustemB/sixtyfps-vim'
call plug#end()
LSP
sixtyfps-lsp
をインストールして coc-settings.json
に設定を追加するだけ。
$ cargo install sixtyfps-lsp
coc-settings.json
{
"thisiscomment": "以下を追加",
"languageserver": {
"sixtyfps": {
"command": "sixtyfps-lsp",
"filetypes": ["sixtyfps"]
}
}
}
結果
いい感じにシンタックスハイライトと補完効くようになりました。