formatting

This commit is contained in:
2023-09-09 00:52:36 +01:00
parent 05b3577683
commit 75c53fd412
2 changed files with 17 additions and 18 deletions

View File

@@ -35,7 +35,7 @@ in {
xwayland = { xwayland = {
enable = true; enable = true;
}; };
enableNvidiaPatches = (hostname == "elderbug"); enableNvidiaPatches = hostname == "elderbug";
extraConfig = extraConfig =
(builtins.readFile ./${hostname}.conf) (builtins.readFile ./${hostname}.conf)
+ '' + ''

View File

@@ -31,31 +31,30 @@ in {
name = "Iosevka Nerd Font"; name = "Iosevka Nerd Font";
}; };
package = package; package = package;
keybindings = { keybindings = {
# Windows/Panes # Windows/Panes
"kitty_mod+enter" = "new_window_with_cwd"; "kitty_mod+enter" = "new_window_with_cwd";
"kitty_mod+h" = "neighboring_window left"; "kitty_mod+h" = "neighboring_window left";
"kitty_mod+j" = "neighboring_window down"; "kitty_mod+j" = "neighboring_window down";
"kitty_mod+k" = "neighboring_window up"; "kitty_mod+k" = "neighboring_window up";
"kitty_mod+l" = "neighboring_window right"; "kitty_mod+l" = "neighboring_window right";
"kitty_mod+r" = "start_resizing_window"; "kitty_mod+r" = "start_resizing_window";
# Tabs
"kitty_mod+t" = "new_tab";
"kitty_mod+w" = "close_tab";
# Tabs # Other
"kitty_mod+t" = "new_tab"; };
"kitty_mod+w" = "close_tab";
# Other
};
settings = { settings = {
"include" = "catppuccin.conf"; "include" = "catppuccin.conf";
"scrollback_lines" = 50000; "scrollback_lines" = 50000;
"shell_integration" = "enabled no-cursor"; "shell_integration" = "enabled no-cursor";
"allow_remote_control" = "yes"; "allow_remote_control" = "yes";
"cursor_shape" = "underline"; "cursor_shape" = "underline";
"cursor_blink_interval" = 0; "cursor_blink_interval" = 0;
@@ -70,8 +69,8 @@ in {
"tab_bar_edge" = "top"; "tab_bar_edge" = "top";
"tab_bar_style" = "powerline"; "tab_bar_style" = "powerline";
"tab_powerline_style" = "slanted"; "tab_powerline_style" = "slanted";
"clear_all_shortcuts" = "yes"; "clear_all_shortcuts" = "yes";
}; };
}; };
} }