nvf/modules/plugins/lsp/lspkind/config.nix

21 lines
396 B
Nix
Raw Normal View History

2023-04-17 22:48:44 +00:00
{
config,
lib,
...
}: let
inherit (lib.modules) mkIf;
inherit (lib.nvim.dag) entryAnywhere;
2023-04-17 22:48:44 +00:00
cfg = config.vim.lsp;
in {
config = mkIf (cfg.enable && cfg.lspkind.enable) {
vim.startPlugins = ["lspkind"];
vim.luaConfigRC.lspkind = entryAnywhere ''
2023-04-17 22:48:44 +00:00
local lspkind = require'lspkind'
local lspkind_opts = {
mode = '${cfg.lspkind.mode}'
}
'';
};
}