From 627d5c595205616042017b33bf42a14aa9b07626 Mon Sep 17 00:00:00 2001 From: Jelle Spreeuwenberg Date: Mon, 27 Jul 2026 16:50:11 +0200 Subject: [PATCH] feat: helix updates --- modules/capabilities/helix.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/modules/capabilities/helix.nix b/modules/capabilities/helix.nix index c65c21f..202ca0c 100644 --- a/modules/capabilities/helix.nix +++ b/modules/capabilities/helix.nix @@ -53,15 +53,16 @@ simple-completion-language-server rust-analyzer + cargo ]; settings = { - theme = "kanagawa"; + theme = "kanagawa-custom"; editor = { soft-wrap.enable = true; lsp = { auto-document-highlight = true; - display-inlay-hints = true; + display-inlay-hints = false; }; rainbow-brackets = true; line-number = "relative"; @@ -83,6 +84,14 @@ }; }; + themes.kanagawa-custom = { + inherits = "kanagawa"; + "ui.highlight".underline = { + color = "dragonBlue"; + style = "line"; + }; + }; + languages = { language-server.scls = { command = "simple-completion-language-server";