blob: 3fe34ae1749466dc6013fa713e377a6866316580 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
{ pkgs, inputs, ... }:
{
programs.tmux = {
enable = true;
keyMode = "vi";
escapeTime = 0;
historyLimit = 500000;
aggressiveResize = true;
terminal = "tmux-256color";
extraConfig = ''
# all the colors we can get
set-option -g default-terminal "tmux-256color"
# emacs keys in status
set -g status-keys emacs
# set focus events
set-option -g focus-events on
set -g mouse off
# curlies
set -as terminal-overrides ',*:Smulx=\E[4::%p1%dm' # undercurl support
set -as terminal-overrides ',*:Setulc=\E[58::2::%p1%{65536}%/%d::%p1%{256}%/%{255}%&%d::%p1%{255}%&%d%;m' # underscore colours - needs tmux-3.0
set -ag terminal-overrides ",$TERM:RGB"
# title
set -g set-titles on
set -g set-titles-string "#T"
# copy to clipboard support
run-shell ${inputs.self.inputs.tmux-yank}/yank.tmux
'';
};
programs.zsh.interactiveShellInit = ''
# create new tmux session with $1 as a name
# if no arguments supplied, use name of current dir
function tn {
if [ $# -eq 0 ]
then
tmux new-session -s $(basename $(pwd))
else
tmux new-session -s $1
fi
}
'';
environment.shellAliases = {
tl = "tmux list-sessions";
ta = "tmux attach -t";
};
environment.systemPackages = [
pkgs.screen
];
programs.screen.screenrc = ''
defscrollback 10000
startup_message off
hardstatus on
hardstatus alwayslastline
hardstatus string "%w"
'';
}
|