0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【随時更新】Neovim備忘録

Last updated at Posted at 2025-07-12

概要

Neovimに関して、Neovim本体の設定や、pluginのものなど固有の知識が多く、触れていないと忘れがち。
すぐ見返せるように、備忘録として設定・コマンドなどを残しておく。

Coc.nvim

インストール済みの拡張を参照する

:CocList extensions

拡張を起動時に自動インストールする

  • :CocInstallで拡張をインストールできるが、新しいPCにNeovimをセットアップするときなど、すべて手動でインストールするのは面倒

  • g:coc_global_extensions変数に拡張を定義することで、Neovim起動時、自動でンストールすることができる

  • VimScript.vimrc, init.vim

let g:coc_global_extensions = ['coc-json', 'coc-git']
  • luainit.lua
vim.g.coc_global_extensions = {'coc-json', 'coc-git'}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?