remove neovim

Signed-off-by: Michael Thomson <michael@michaelthomson.dev>
This commit is contained in:
2024-11-17 21:03:50 -05:00
parent 116e757499
commit f3e9f9e031
28 changed files with 34 additions and 686 deletions

View File

@@ -1,23 +0,0 @@
{ inputs, pkgs, config, ... }:
{
home.packages = with pkgs; [
fzf
ripgrep
luarocks
luajit
lua-language-server
nil
];
programs.neovim = {
enable = true;
package = inputs.neovim-nightly-overlay.packages.${pkgs.system}.default;
};
home.file.".config/nvim/" = {
source = ./nvim;
recursive = true;
};
}