1

Modules/Neovim: Add additional dependencies

This commit is contained in:
2026-06-05 12:36:15 +02:00
parent 2b04e3c253
commit aefec1a3a1

View File

@ -83,6 +83,9 @@ in {
stylua stylua
tombi tombi
typstyle typstyle
nodejs_latest
uv
]) ])
[ [
@ -97,6 +100,7 @@ in {
(perl.withPackages (p: (perl.withPackages (p:
with p; [ with p; [
PLS PLS
PerlCritic
PerlTidy PerlTidy
NetOpenSSH NetOpenSSH
DateTime DateTime
@ -141,6 +145,8 @@ in {
}; };
programs.nixvim = { programs.nixvim = {
# nixpkgs.pkgs = pkgs;
defaultEditor = true; defaultEditor = true;
enable = true; enable = true;
enableMan = false; # Nixvim man pages enableMan = false; # Nixvim man pages
@ -163,7 +169,7 @@ in {
performance.byteCompileLua = { performance.byteCompileLua = {
enable = true; enable = true;
configs = true; configs = true;
initLua = false; # When debugging init.lua turn this off initLua = true; # When debugging init.lua turn this off
nvimRuntime = true; nvimRuntime = true;
plugins = true; plugins = true;
}; };