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:
parent
6bd43bf321
commit
9a52ac7c36
2 changed files with 73 additions and 0 deletions
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue