From 152de38181eca203c939ba2a5d50e0d76d522dc8 Mon Sep 17 00:00:00 2001 From: Christian Date: Sun, 18 Jan 2026 21:59:30 -0600 Subject: Restructure --- modules/home/nvim/default.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 modules/home/nvim/default.nix (limited to 'modules/home/nvim/default.nix') diff --git a/modules/home/nvim/default.nix b/modules/home/nvim/default.nix new file mode 100644 index 0000000..6cae9d6 --- /dev/null +++ b/modules/home/nvim/default.nix @@ -0,0 +1,14 @@ +{ pkgs, ... }: { + programs.neovim = { + enable = true; + defaultEditor = true; + viAlias = true; + vimAlias = true; + + plugins = with pkgs.vimPlugins; [ + nvim-treesitter.withAllGrammars + ]; + + extraLuaConfig = builtins.readFile ./global_config.lua; + }; +} -- cgit v1.2.3