mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
feat[client]: manage zellij using nix
This commit is contained in:
parent
ad4443056a
commit
6d930c3fa4
5 changed files with 2604 additions and 10 deletions
|
|
@ -4,11 +4,25 @@
|
|||
config = lib.mkIf config.swarselmodules.kitty {
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
keybindings = { };
|
||||
keybindings =
|
||||
let
|
||||
bindWithModifier = lib.mapAttrs' (key: lib.nameValuePair ("ctrl+shift" + key));
|
||||
in
|
||||
bindWithModifier {
|
||||
"page_up" = "scroll_page_up";
|
||||
"up" = "scroll_page_up";
|
||||
"page_down" = "scroll_page_down";
|
||||
"down" = "scroll_page_down";
|
||||
"w" = "no_op";
|
||||
};
|
||||
settings = {
|
||||
scrollback_lines = 10000;
|
||||
cursor_blink_interval = 0;
|
||||
disable_ligatures = "cursor";
|
||||
enable_audio_bell = false;
|
||||
notify_on_cmd_finish = "always 20";
|
||||
open_url_with = "xdg-open";
|
||||
scrollback_lines = 100000;
|
||||
scrollback_pager_history_size = 512;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue