mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
23 lines
448 B
Nix
23 lines
448 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib) mkEnableOption mkOption types;
|
|
|
|
cfg = config.vim.lsp;
|
|
in {
|
|
options.vim.lsp = {
|
|
lspkind = {
|
|
enable = mkEnableOption "vscode-like pictograms for lsp [lspkind]";
|
|
|
|
mode = mkOption {
|
|
description = "Defines how annotations are shown";
|
|
type = with types; enum ["text" "text_symbol" "symbol_text" "symbol"];
|
|
default = "symbol_text";
|
|
};
|
|
};
|
|
};
|
|
}
|