This commit is contained in:
Tim Schubert 2020-02-28 17:05:29 +01:00
commit c1ab1afd4e
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
28 changed files with 560 additions and 0 deletions

15
tmux.nix Normal file
View 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
'';
};
}