mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-02-24 20:38:47 +00:00
22 lines
718 B
Nix
22 lines
718 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption mkOption;
|
|
inherit (lib.types) enum nullOr;
|
|
inherit (lib.nvim.types) mkPluginSetupOption luaInline;
|
|
in {
|
|
options.vim.lsp.lspkind = {
|
|
enable = mkEnableOption "vscode-like pictograms for lsp [lspkind]";
|
|
setupOpts = mkPluginSetupOption "lspkind.nvim" {
|
|
mode = mkOption {
|
|
description = "Defines how annotations are shown";
|
|
type = enum ["text" "text_symbol" "symbol_text" "symbol"];
|
|
default = "symbol_text";
|
|
};
|
|
|
|
before = mkOption {
|
|
description = "The function that will be called before lspkind's modifications are applied";
|
|
type = nullOr luaInline;
|
|
default = null;
|
|
};
|
|
};
|
|
};
|
|
}
|