From 563a68366cca93bcfcf89930df14be8f7ada7665 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nina=20Chl=C3=B3e=20Kassandra=20Rei=C3=9F?= Date: Tue, 2 Jun 2026 21:58:11 +0200 Subject: [PATCH] Introduce neovim configuration through nested imports --- terminal-environment/editor.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/terminal-environment/editor.nix b/terminal-environment/editor.nix index 5e5c1a1..0d8ed88 100644 --- a/terminal-environment/editor.nix +++ b/terminal-environment/editor.nix @@ -34,9 +34,10 @@ in withPython3 = true; withRuby = true; waylandSupport = true; + initLua = "require('nvim')"; }; - xdg.configFile."nvim/nvim" = { + xdg.configFile."nvim/lua/nvim" = { source = neovim_configuration; }; }