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"; }; }; }