From 875c8e5d08e463322e44bf66e8a5d4caa562bd4f Mon Sep 17 00:00:00 2001 From: Christian Date: Sun, 18 Jan 2026 21:50:26 -0600 Subject: Neovim config --- modules/home/nvim.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 modules/home/nvim.nix (limited to 'modules/home/nvim.nix') diff --git a/modules/home/nvim.nix b/modules/home/nvim.nix new file mode 100644 index 0000000..f715f75 --- /dev/null +++ b/modules/home/nvim.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: { + programs.neovim = { + enable = true; + defaultEditor = true; + viAlias = true; + vimAlias = true; + + plugins = with pkgs.vimPlugins; [ + nvim-treesitter.withAllGrammars + ]; + }; +} -- cgit v1.2.3