diff --git a/home/helix.nix b/home/helix.nix index 360d9d4..53d2914 100644 --- a/home/helix.nix +++ b/home/helix.nix @@ -1,6 +1,10 @@ +{ pkgs, ... }: { programs.helix = { enable = true; + extraPackages = with pkgs; [ + marksman + ]; settings = { theme = "snazzy"; editor .true-color = true; @@ -8,6 +12,12 @@ # Shortcut to save file, in any mode. keys.insert."C-s" = [ ":write" "normal_mode" ]; keys.normal."C-s" = ":write"; + + editor.lsp = { + display-messages = true; + display-inlay-hints = true; + display-signature-help-docs = true; + }; }; }; }