Compare commits

..

4 commits

Author SHA1 Message Date
diniamo
8848fd08ea
Merge 554b36a4bf into ef413736e9 2024-10-07 05:43:11 +00:00
diniamo
554b36a4bf nvim-cmp: load after luasnip 2024-10-07 07:43:06 +02:00
raf
ef413736e9
Merge branch 'main' into v0.7 2024-10-07 00:40:13 +00:00
Ching Pei Yang
e77632e4eb
lib: remove pointless type restriction (#408)
Some checks failed
Set up binary cache / cachix (default) (push) Has been cancelled
Set up binary cache / cachix (maximal) (push) Has been cancelled
Set up binary cache / cachix (nix) (push) Has been cancelled
Validate flake & check formatting / Validate Flake (push) Has been cancelled
Validate flake & check formatting / Formatting via Alejandra (push) Has been cancelled
2024-10-06 23:19:39 +00:00
2 changed files with 2 additions and 2 deletions

View file

@ -97,7 +97,7 @@ in {
default = {}; default = {};
type = submodule { type = submodule {
freeformType = attrsOf anything; freeformType = anything;
options = opts; options = opts;
}; };
}; };

View file

@ -44,7 +44,7 @@ in {
formatting.format = cfg.format; formatting.format = cfg.format;
}; };
pluginRC.nvim-cmp = mkIf cfg.enable (entryAfter ["autopairs"] '' pluginRC.nvim-cmp = mkIf cfg.enable (entryAfter ["autopairs" "luasnip"] ''
local luasnip = require("luasnip") local luasnip = require("luasnip")
local cmp = require("cmp") local cmp = require("cmp")
cmp.setup(${toLuaObject cfg.setupOpts}) cmp.setup(${toLuaObject cfg.setupOpts})