feat: started nixvim
This commit is contained in:
parent
6721068e21
commit
12bc5b1303
|
@ -34,6 +34,14 @@
|
||||||
".cache/nvim"
|
".cache/nvim"
|
||||||
];
|
];
|
||||||
home.shellAliases.nixvim = lib.getExe (pkgs.nixvim.makeNixvim {
|
home.shellAliases.nixvim = lib.getExe (pkgs.nixvim.makeNixvim {
|
||||||
|
package = pkgs.neovim-unwrapped.overrideAttrs (_final: prev: {
|
||||||
|
nativeBuildInputs = (prev.nativeBuildInputs or []) ++ [pkgs.makeWrapper];
|
||||||
|
postInstall =
|
||||||
|
(prev.postInstall or "")
|
||||||
|
+ ''
|
||||||
|
wrapProgram $out/bin/nvim --add-flags "--clean"
|
||||||
|
'';
|
||||||
|
});
|
||||||
colorscheme = "onedark";
|
colorscheme = "onedark";
|
||||||
colorschemes.onedark.enable = true;
|
colorschemes.onedark.enable = true;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue