replace alacritty with terminator

closes #27
This commit is contained in:
Pim Kunis 2023-11-04 17:11:05 +01:00
parent a01a4e4fc0
commit 0abb32ef30

View file

@ -7,7 +7,6 @@
./firefox ./firefox
./ssh ./ssh
./syncthing ./syncthing
./alacritty
./keepassxc ./keepassxc
./git ./git
./direnv ./direnv
@ -40,12 +39,29 @@
home-manager.enable = true; home-manager.enable = true;
chromium.enable = true; chromium.enable = true;
tmux = { terminator = {
enable = true; enable = true;
sensibleOnTop = true; config = {
newSession = true; keybindings = {
terminal = "tmux"; zoom_in = "<Ctrl>plus";
keyMode = "vi"; zoom_out = "<Ctrl>minus";
new_tab = "<Ctrl><Shift>T";
cycle_next = "<Ctrl>Tab";
cycle_prev = "<Ctrl><Shift>Tab";
split_horiz = "<Alt>V";
split_vert = "<Alt>C";
go_left = "<Alt>H";
go_right = "<Alt>L";
go_up = "<Alt>K";
go_down = "<Alt>J";
copy = "<Ctrl><Shift>C";
paste = "<Ctrl><Shift>V";
layout_launcher = ""; # Default <Alt>L
};
};
}; };
}; };