treesitter-cmp: disable on blink.cmp

This commit is contained in:
Ching Pei Yang 2024-12-23 20:27:27 +01:00
parent 5af402af98
commit 03359ac3c6
No known key found for this signature in database
GPG key ID: B3841364253DC4C8

View file

@ -20,7 +20,8 @@ in {
vim = {
startPlugins = ["nvim-treesitter"];
autocomplete = {
# cmp-treesitter doesn't work on blink.cmp
autocomplete = mkIf config.vim.autocomplete.nvim-cmp.enable {
nvim-cmp.sources = {treesitter = "[Treesitter]";};
sourcePlugins = ["cmp-treesitter"];
};