2023-04-17 22:48:44 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
2023-11-08 02:16:46 +00:00
|
|
|
}: let
|
2024-10-09 17:50:34 +00:00
|
|
|
inherit (lib.modules) mkIf mkForce;
|
|
|
|
inherit (lib.generators) mkLuaInline;
|
|
|
|
inherit (lib.nvim.lua) toLuaObject;
|
2023-11-08 02:16:46 +00:00
|
|
|
|
2024-10-09 17:50:34 +00:00
|
|
|
cfg = config.vim.lsp.lspkind;
|
2023-04-17 22:48:44 +00:00
|
|
|
in {
|
2024-10-09 17:50:34 +00:00
|
|
|
config = mkIf cfg.enable {
|
|
|
|
assertions = [
|
|
|
|
{
|
|
|
|
assertion = config.vim.autocomplete.nvim-cmp.enable;
|
|
|
|
message = ''
|
|
|
|
While lspkind supports Neovim's native lsp upstream, using that over
|
|
|
|
nvim-cmp isn't recommended, nor supported by nvf.
|
|
|
|
|
|
|
|
Please migrate to nvim-cmp if you want to use lspkind.
|
|
|
|
'';
|
2023-04-17 22:48:44 +00:00
|
|
|
}
|
2024-10-09 17:50:34 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
vim = {
|
|
|
|
startPlugins = ["lspkind"];
|
|
|
|
|
|
|
|
lsp.lspkind.setupOpts.before = config.vim.autocomplete.nvim-cmp.format;
|
|
|
|
autocomplete.nvim-cmp.setupOpts.formatting.format = mkForce (mkLuaInline ''
|
|
|
|
require("lspkind").cmp_format(${toLuaObject cfg.setupOpts})
|
|
|
|
'');
|
|
|
|
};
|
2023-04-17 22:48:44 +00:00
|
|
|
};
|
|
|
|
}
|