diff --git a/modules/style/colors.nix b/modules/style/colors.nix index 8b6dcd9..07934ae 100644 --- a/modules/style/colors.nix +++ b/modules/style/colors.nix @@ -35,7 +35,7 @@ in { name = mkOption { type = nullOr (enum ["Catppuccin Mocha" "Zenburn" "Black Metal Venom" "Gruvbox"]); description = "The colorscheme that should be used globally to theme your system."; - default = "Catppuccin Mocha"; + default = "Gruvbox"; }; slug = mkOption { diff --git a/modules/wms/wayland/hyprland/binds.nix b/modules/wms/wayland/hyprland/binds.nix index 92d4489..860ed20 100644 --- a/modules/wms/wayland/hyprland/binds.nix +++ b/modules/wms/wayland/hyprland/binds.nix @@ -53,9 +53,6 @@ in { # Reload hyprland "$mainMod, R, exec, ${getExe' pkgs.hyprland "hyprctl"} reload" - # Grab rouge windows, which may persist after disconnecting a monitor. - "$mainMod, G, split:grabroguewindows" - # Restart 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"}" diff --git a/packages/helix.nix b/packages/helix.nix index 8c80f67..c084885 100644 --- a/packages/helix.nix +++ b/packages/helix.nix @@ -39,7 +39,7 @@ toml = formats.toml {}; helix-config = { - theme = "catppuccin_mocha"; + theme = "gruvbox"; editor = { cursorline = false; color-modes = true; @@ -48,7 +48,7 @@ lsp = { enable = true; auto-signature-help = true; - display-inlay-hints = false; + display-inlay-hints = true; display-messages = true; snippets = true; }; @@ -78,10 +78,7 @@ }; keys = { normal = { - space = { - g = [":new" ":insert-output XDG_CONFIG_HOME=~/.config ${getExe lazygit}" ":buffer-close!" ":redraw"]; - i = ":toggle lsp.display-inlay-hints"; - }; + space.g = [":new" ":insert-output XDG_CONFIG_HOME=~/.config ${getExe lazygit}" ":buffer-close!" ":redraw"]; esc = ["collapse_selection" "keep_primary_selection" "normal_mode"]; A-H = "goto_previous_buffer"; A-L = "goto_next_buffer";