aboutsummaryrefslogtreecommitdiffstats
path: root/home/trent/common/core/tmux
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2026-05-21 21:39:31 -0700
committerMark Nipper <nipsy@bitgnome.net>2026-05-21 21:39:31 -0700
commit86607cc679f76c74fc5b31e58d473210634e9d3d (patch)
tree6b339f85a8667214e982346f000e07a0519cf51d /home/trent/common/core/tmux
parentc4157b439b4705becf48314fea6139da8a495354 (diff)
downloadnix-86607cc679f76c74fc5b31e58d473210634e9d3d.tar
nix-86607cc679f76c74fc5b31e58d473210634e9d3d.tar.gz
nix-86607cc679f76c74fc5b31e58d473210634e9d3d.tar.bz2
nix-86607cc679f76c74fc5b31e58d473210634e9d3d.tar.lz
nix-86607cc679f76c74fc5b31e58d473210634e9d3d.tar.xz
nix-86607cc679f76c74fc5b31e58d473210634e9d3d.tar.zst
nix-86607cc679f76c74fc5b31e58d473210634e9d3d.zip
Remove prometheusHEADmaster
Diffstat (limited to 'home/trent/common/core/tmux')
-rw-r--r--home/trent/common/core/tmux/default.nix6
-rw-r--r--home/trent/common/core/tmux/tmux.conf34
2 files changed, 0 insertions, 40 deletions
diff --git a/home/trent/common/core/tmux/default.nix b/home/trent/common/core/tmux/default.nix
deleted file mode 100644
index e7873f8..0000000
--- a/home/trent/common/core/tmux/default.nix
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- programs.tmux = {
- enable = true;
- extraConfig = (builtins.readFile ./tmux.conf);
- };
-}
diff --git a/home/trent/common/core/tmux/tmux.conf b/home/trent/common/core/tmux/tmux.conf
deleted file mode 100644
index 479a896..0000000
--- a/home/trent/common/core/tmux/tmux.conf
+++ /dev/null
@@ -1,34 +0,0 @@
-#set-option -ga terminal-overrides ",st-256color:Tc"
-#set -as terminal-features ",foot*:RGB"
-#set -as terminal-features ",st-256color:RGB"
-set -ga monitor-bell on
-set -g history-limit 100000
-set -g bell-action any
-#set -g bell-on-alert on
-
-set -s escape-time 0
-
-setw -g aggressive-resize on
-setw -g wrap-search off
-
-bind-key a send-prefix
-bind-key k kill-session
-#bind-key H pipe-pane -o 'cat >> ~/.tmux.log.#h-#S-#I-#P'
-
-#bind-key m \
-# set -g mouse on \;\
-# display 'Mouse: ON'
-#bind M \
-# set -g mouse off \;\
-# display 'Mouse: OFF'
-
-# vim-like copypaste mode
-set-window-option -g mode-keys vi
-bind-key -T copy-mode-vi v send -X begin-selection
-bind-key -T copy-mode-vi y send -X copy-pipe "xclip -selection clipboard"
-bind-key -T copy-mode-vi C-v send -X rectangle-toggle
-bind-key P run "tmux set-buffer \"$(xclip -o -selection clipboard)\"; tmux paste-buffer"
-
-# don't exit copy mode after selection
-#set -s mouse on
-#bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-selection -x