Init
This commit is contained in:
commit
c1ab1afd4e
28 changed files with 560 additions and 0 deletions
15
tmux.nix
Normal file
15
tmux.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
programs.tmux = {
|
||||
enable = true;
|
||||
terminal = "xterm-256color";
|
||||
extraConfig = ''
|
||||
set -g status on
|
||||
set-option -g set-titles on
|
||||
set-option -g set-titles-string "#T"
|
||||
set-option -g automatic-rename on
|
||||
set-window-option -g mode-keys vi
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue