From 560fa7ddc4757bbf614b46d62965bb6f3430d3bb Mon Sep 17 00:00:00 2001 From: TudbuT Date: Fri, 15 Nov 2024 21:25:50 +0100 Subject: [PATCH] helix: use config from old setup alacritty: use smaller font --- home.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/home.nix b/home.nix index 6fb6c19..c55a347 100644 --- a/home.nix +++ b/home.nix @@ -189,6 +189,7 @@ in services.picom.enable = true; programs.alacritty.settings.window.opacity = 0.7; programs.alacritty.settings.font.normal.family = "Monocraft"; + programs.alacritty.settings.font.size = 12; #services.dunst.enable = true; gtk.enable = true; gtk.theme = { @@ -219,7 +220,19 @@ in cursor-shape = { insert = "bar"; }; + cursorline = true; + bufferline = "always"; + lsp.display-inlay-hints = true; + idle-timeout = 0; + completion-trigger-len = 1; }; + keys.normal = { + minus = "goto_previous_buffer"; + "+" = "goto_next_buffer"; + "#" = ":buffer-close"; + G = "goto_file_end"; + }; + keys.normal.g.f = "code_action"; }; }; }