From 5607a3683976ee31fbb15a74c125840a06380ca8 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Tue, 8 Nov 2022 19:07:21 +0100 Subject: [PATCH] helix: Add texlab LSP. Additional config. --- roles/home/helix.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/roles/home/helix.nix b/roles/home/helix.nix index 764a7e8..0240d18 100644 --- a/roles/home/helix.nix +++ b/roles/home/helix.nix @@ -9,6 +9,20 @@ file.".config/helix/config.toml".text = '' theme = "monokai" + + [editor] + cursorline = true + + [editor.cursor-shape] + insert = "bar" + normal = "block" + select = "underline" + + [editor.lsp] + display-messages = true + + [editor.indent-guides] + render = true ''; packages = with pkgs.unstable; [ @@ -17,6 +31,7 @@ rust-analyzer rnix-lsp python310Packages.python-lsp-server + texlab ]; }; }