From 2903440a12a14a96bbc5670fbb475c64d32a80cc Mon Sep 17 00:00:00 2001 From: Doloro1978 Date: Mon, 20 Oct 2025 11:11:34 +0000 Subject: [PATCH] qol(nixvim@modules): bytecompiled and new keybind for diagnostics --- nix/modules/nixvim/home.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/nix/modules/nixvim/home.nix b/nix/modules/nixvim/home.nix index 838e335..5ecdf05 100644 --- a/nix/modules/nixvim/home.nix +++ b/nix/modules/nixvim/home.nix @@ -29,6 +29,11 @@ in enable = true; defaultEditor = true; colorschemes.tokyonight.enable = true; + performance.byteCompileLua = { + enable = true; + plugins = true; + nvimRuntime = true; + }; plugins = { lsp-status.enable = true; lsp = { @@ -182,6 +187,13 @@ in silent = true; }; } + { + action = "Trouble diagnostics toggle"; + key = "fd"; + options = { + silent = true; + }; + } ]; }; }