Fix occassional Neovim loading error

This commit is contained in:
Oliver Davies 2024-12-06 16:06:33 +00:00
parent 930473a896
commit bab5f8f4a8
4 changed files with 7 additions and 20 deletions

View file

@ -41,16 +41,10 @@
};
inherit (pkgs) mkShell;
inherit (pkgs.vimUtils) buildVimPlugin;
in
{
packages.${system} = {
default = mkShell { buildInputs = with pkgs; [ bashInteractive ]; };
opdavies-nvim = buildVimPlugin {
name = "opdavies-nvim";
src = ./nvim;
};
};
formatter.${system} = pkgs.nixfmt-rfc-style;