From b09bd7f9f8b404a8ba32b8cda6f496deebd3be19 Mon Sep 17 00:00:00 2001 From: ShatteredMINT Date: Tue, 12 May 2026 10:21:58 +0200 Subject: [PATCH] create starting neovim config --- users/shatteredmint.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/users/shatteredmint.nix b/users/shatteredmint.nix index e517199..3bcffda 100644 --- a/users/shatteredmint.nix +++ b/users/shatteredmint.nix @@ -64,10 +64,17 @@ enable = true; extraPackages = with pkgs; [ wl-clipboard + vimPlugins.lazy-nvim ]; withRuby = false; withPython3 = false; + + initLua = '' + vim.opt.rtp:prepend("${pkgs.vimPlugins.lazy-nvim.outPath}") + require ('config') + require ('plugins') + ''; };