mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
21 lines
370 B
Nix
21 lines
370 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib) mkIf nvim;
|
|
|
|
cfg = config.vim.lsp;
|
|
in {
|
|
config = mkIf (cfg.enable && cfg.lspkind.enable) {
|
|
vim.startPlugins = ["lspkind"];
|
|
vim.luaConfigRC.lspkind = nvim.dag.entryAnywhere ''
|
|
local lspkind = require'lspkind'
|
|
local lspkind_opts = {
|
|
mode = '${cfg.lspkind.mode}'
|
|
}
|
|
'';
|
|
};
|
|
}
|