Merge branch 'main' into avante

This commit is contained in:
Ching Pei Yang 2025-06-03 16:15:03 +02:00 committed by GitHub
commit 7550be9b72
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 331 additions and 211 deletions

View file

@ -21,7 +21,17 @@ in {
};
};
treesitter.enable = true;
treesitter = {
enable = true;
# Codecompanion depends on the YAML grammar being added. Below is
# an easy way of adding an user-configurable grammar package exposed
# by the YAML language module *without* enabling the whole YAML language
# module. The package is defined even when the module is disabled.
grammars = [
config.vim.languages.yaml.treesitter.package
];
};
autocomplete.nvim-cmp = {
sources = {codecompanion-nvim = "[codecompanion]";};