Compare commits

..

4 commits

Author SHA1 Message Date
diniamo
fd6f6a01ec
Merge 6941da67f5 into a07e113f3a 2024-11-13 10:10:10 +00:00
diniamo
6941da67f5 nvim-cmp: use border style 2024-11-13 11:10:03 +01:00
diniamo
5a450f2b24 nvim-cmp: allow passing null to format
Not adding special cases to where it's used shouldn't break anything.
2024-11-13 11:10:03 +01:00
diniamo
228dcac45e flake: provide dev package 2024-11-13 11:10:03 +01:00

View file

@ -19,11 +19,12 @@
# request.
packages.dev = let
configuration = {};
in
(lib.nvim.neovimConfiguration {
customNeovim = lib.nvim.neovimConfiguration {
inherit pkgs;
modules = [configuration];
})
.neovim;
};
in
customNeovim.neovim;
};
}