mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 11:31: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
35 lines
857 B
Nix
35 lines
857 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf mkForce;
|
|
inherit (lib.generators) mkLuaInline;
|
|
inherit (lib.nvim.lua) toLuaObject;
|
|
|
|
cfg = config.vim.lsp.lspkind;
|
|
in {
|
|
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.
|
|
'';
|
|
}
|
|
];
|
|
|
|
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})
|
|
'');
|
|
};
|
|
};
|
|
}
|