Compare commits

..

2 Commits

Author SHA1 Message Date
kiri a18d405ea7 feat: make shift+enter newline 2026-04-29 12:26:38 +02:00
kiri 9b3db93dbd feat: disable command-not-found for nix-index 2026-04-29 12:19:49 +02:00
2 changed files with 4 additions and 0 deletions
+1
View File
@@ -45,6 +45,7 @@ in
}) })
]; ];
programs.nix-index.enableZshIntegration = false;
programs.nix-index-database.comma.enable = true; programs.nix-index-database.comma.enable = true;
programs.television = { programs.television = {
+3
View File
@@ -78,6 +78,8 @@ in
scrollback.lines = 10000; scrollback.lines = 10000;
text-bindings."\\x0a" = "Shift+Return Shift+KP_Enter";
colors-dark = { colors-dark = {
background = hex palette.background; background = hex palette.background;
foreground = hex palette.foreground; foreground = hex palette.foreground;
@@ -133,6 +135,7 @@ in
window_padding_width = 3; window_padding_width = 3;
update_check_interval = 0; update_check_interval = 0;
}; };
keybindings."shift+enter" = "send_text all \\x0a";
extraConfig = '' extraConfig = ''
## name: ${repoTheme.displayName} ## name: ${repoTheme.displayName}
## license: MIT ## license: MIT