[[CodeCompanion]]のレスポンスを日本語にする方法。`opts.language` を設定する。
```lua
{
opts = {
language = "Japanese"
}
}
```
[[lazy.nvim]]に設定するときは `opts` はネストするので注意。
```lua
return {
"olimorris/codecompanion.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-treesitter/nvim-treesitter",
},
opts = {
-- このoptsはCodeCompanionの仕様
opts = {
language = "Japanese"
}
}
}
```