1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-27 12:41:03 +01:00

plugins/gdscript-extended-lsp: init

This commit is contained in:
Heitor Augusto 2025-11-10 16:14:30 -03:00 committed by Matt Sturgeon
parent 6bd43bf321
commit 9a52ac7c36
2 changed files with 73 additions and 0 deletions

View file

@ -0,0 +1,46 @@
{
empty = {
plugins.gdscript-extended-lsp.enable = true;
};
defaults = {
plugins = {
gdscript-extended-lsp = {
enable = true;
settings = {
doc_file_extension = ".txt";
view_type = "vsplit";
split_side = false;
keymaps = {
declaration = "gd";
close = [
"q"
"<Esc>"
];
};
floating_win_size = 0.8;
picker = "telescope";
};
};
telescope.enable = true;
web-devicons.enable = true;
};
};
example = {
plugins = {
gdscript-extended-lsp = {
enable = true;
settings = {
picker = "snacks";
};
};
snacks = {
enable = true;
settings.picker.enabled = true;
};
};
};
}