mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
7dbd1cd8d1
* modules/completion: rewrite * treewide: remove vsnip, add luasnip * nvim-cmp: add default sorting * nvim-cmp: load after luasnip * lib: fix docs for mergelessListOf * docs: add changelog entires for rewrite * deprecations: add rewrite deprecations * nvim-cmp: clarify in format description * docs: fix option reference in release notes * treewide: remove reduant `// {default = false;}`s * luasnip: add missing `{option}` for option reference * deprecations: add entry for vsnip * nvim-autopairs: use multiline string * nvim-dap: use outer attribute
23 lines
718 B
Nix
23 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;
|
|
};
|
|
};
|
|
};
|
|
}
|