Compare commits

...

3 commits

Author SHA1 Message Date
3d9518e758
hyprland/binds.nix: add keybind for grabbing rouge windows 2025-05-06 21:55:55 +02:00
08658d4c42
helix: do not display display hints automatically
Display hints can be annoying, hence I toggle them using
<space>-i instead.
2025-05-06 21:55:05 +02:00
154da6736d
system: switch to Catppuccin again 2025-05-06 21:53:27 +02:00
3 changed files with 10 additions and 4 deletions

View file

@ -35,7 +35,7 @@ in {
name = mkOption { name = mkOption {
type = nullOr (enum ["Catppuccin Mocha" "Zenburn" "Black Metal Venom" "Gruvbox"]); type = nullOr (enum ["Catppuccin Mocha" "Zenburn" "Black Metal Venom" "Gruvbox"]);
description = "The colorscheme that should be used globally to theme your system."; description = "The colorscheme that should be used globally to theme your system.";
default = "Gruvbox"; default = "Catppuccin Mocha";
}; };
slug = mkOption { slug = mkOption {

View file

@ -53,6 +53,9 @@ in {
# Reload hyprland # Reload hyprland
"$mainMod, R, exec, ${getExe' pkgs.hyprland "hyprctl"} reload" "$mainMod, R, exec, ${getExe' pkgs.hyprland "hyprctl"} reload"
# Grab rouge windows, which may persist after disconnecting a monitor.
"$mainMod, G, split:grabroguewindows"
# Restart waybar # Restart waybar
"$mainMod CONTROL, B, exec, ${pkgs.procps}/bin/pkill waybar || ${getExe pkgs.waybar}" "$mainMod CONTROL, B, exec, ${pkgs.procps}/bin/pkill waybar || ${getExe pkgs.waybar}"
"$mainMod CONTROL, Q, exec, ${pkgs.procps}/bin/pkill quickshell || ${getExe' inputs.quickshell.packages.${pkgs.stdenv.system}.default "quickshell"}" "$mainMod CONTROL, Q, exec, ${pkgs.procps}/bin/pkill quickshell || ${getExe' inputs.quickshell.packages.${pkgs.stdenv.system}.default "quickshell"}"

View file

@ -39,7 +39,7 @@
toml = formats.toml {}; toml = formats.toml {};
helix-config = { helix-config = {
theme = "gruvbox"; theme = "catppuccin_mocha";
editor = { editor = {
cursorline = false; cursorline = false;
color-modes = true; color-modes = true;
@ -48,7 +48,7 @@
lsp = { lsp = {
enable = true; enable = true;
auto-signature-help = true; auto-signature-help = true;
display-inlay-hints = true; display-inlay-hints = false;
display-messages = true; display-messages = true;
snippets = true; snippets = true;
}; };
@ -78,7 +78,10 @@
}; };
keys = { keys = {
normal = { normal = {
space.g = [":new" ":insert-output XDG_CONFIG_HOME=~/.config ${getExe lazygit}" ":buffer-close!" ":redraw"]; space = {
g = [":new" ":insert-output XDG_CONFIG_HOME=~/.config ${getExe lazygit}" ":buffer-close!" ":redraw"];
i = ":toggle lsp.display-inlay-hints";
};
esc = ["collapse_selection" "keep_primary_selection" "normal_mode"]; esc = ["collapse_selection" "keep_primary_selection" "normal_mode"];
A-H = "goto_previous_buffer"; A-H = "goto_previous_buffer";
A-L = "goto_next_buffer"; A-L = "goto_next_buffer";