initial
This commit is contained in:
21
config/completion/lspkind.nix
Normal file
21
config/completion/lspkind.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
options = {
|
||||
lspkind.enable = lib.mkEnableOption "Enable lspkind module";
|
||||
};
|
||||
config = lib.mkIf config.lspkind.enable {
|
||||
plugins.lspkind = {
|
||||
enable = true;
|
||||
symbolMap = {
|
||||
Copilot = "";
|
||||
};
|
||||
extraOptions = {
|
||||
maxwidth = 50;
|
||||
ellipsis_char = "...";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user