nixpkgs/home/programs/tmux.nix

22 lines
462 B
Nix
Raw Normal View History

2022-02-03 09:10:22 +01:00
{ }:
{
enable = true;
# Accordingly to neovim https://github.com/neovim/neovim/wiki/FAQ#esc-in-tmux-or-gnu-screen-is-delayed
escapeTime = 10;
keyMode = "vi";
shortcut = "t";
resizeAmount = 5;
aggressiveResize = true;
# Use tmux with 256 colors.
# Also see https://github.com/neovim/neovim/wiki/FAQ#colors-arent-displayed-correctly
terminal = "tmux-256color";
sensibleOnTop = false;
extraConfig = builtins.readFile ../files/tmux;
}