aboutsummaryrefslogtreecommitdiff
path: root/home/profiles/tmux.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-05-16 20:09:27 -0700
committerFranck Cuny <franck@fcuny.net>2023-05-16 20:09:27 -0700
commit354afc1754f0616cd086b1a6f607022155a1f9e3 (patch)
treed79cde08506a4297e749828d8f6662b88f69b5cd /home/profiles/tmux.nix
parenthome/ssh: add rsync.net to the match block (diff)
downloadinfra-354afc1754f0616cd086b1a6f607022155a1f9e3.tar.gz
profiles/workstation: stop using dark mode + prezto
Diffstat (limited to 'home/profiles/tmux.nix')
-rw-r--r--home/profiles/tmux.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/home/profiles/tmux.nix b/home/profiles/tmux.nix
deleted file mode 100644
index 22f8683..0000000
--- a/home/profiles/tmux.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ ... }:
-{
- programs.tmux = {
- enable = true;
-
- terminal = "xterm-256color";
- escapeTime = 0;
- aggressiveResize = true;
- baseIndex = 1;
- shortcut = "z";
- clock24 = true;
- historyLimit = 50000; # Bigger buffer
-
- extraConfig = ''
- setw -g mouse on
-
- set-option -g renumber-windows on
- '';
- };
-}