neovim-flake/modules/lsp/lspkind/lspkind.nix

23 lines
448 B
Nix
Raw Normal View History

2023-04-18 00:48:44 +02:00
{
pkgs,
config,
lib,
...
}: let
inherit (lib) mkEnableOption mkOption types;
2023-04-18 00:48:44 +02:00
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";
};
};
};
}