diff options
author | Franck Cuny <fcuny@twitter.com> | 2018-11-23 09:27:31 -0800 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2018-11-23 09:27:31 -0800 |
commit | 6f6864aab3322b24f7937ead4ccce2a6386e7d22 (patch) | |
tree | 457baf02f4ee50acce3c47e5566b4d0903f30365 /configs/rcs | |
parent | [bash] Let's try to use emacs tty (diff) | |
download | emacs.d-6f6864aab3322b24f7937ead4ccce2a6386e7d22.tar.gz |
[tmux] delete it again.
Diffstat (limited to '')
-rw-r--r-- | configs/rcs/Makefile | 3 | ||||
-rw-r--r-- | configs/rcs/tmux.conf | 25 |
2 files changed, 1 insertions, 27 deletions
diff --git a/configs/rcs/Makefile b/configs/rcs/Makefile index 6a24d52..e71e986 100644 --- a/configs/rcs/Makefile +++ b/configs/rcs/Makefile @@ -8,8 +8,7 @@ INSTALL = \ ctags \ emacs.d \ gitconfig \ - gitignore \ - tmux.conf + gitignore INSTALLED = $(patsubst %,$(INTO)/.%,$(INSTALL)) diff --git a/configs/rcs/tmux.conf b/configs/rcs/tmux.conf deleted file mode 100644 index 332e16f..0000000 --- a/configs/rcs/tmux.conf +++ /dev/null @@ -1,25 +0,0 @@ -# Avoid conflicting with emacs key bindings in the shell -unbind C-b -set -g prefix C-z - -# 256-color terminal -set-option -g default-terminal "xterm-256color" - -# Add truecolor support (tmux info | grep Tc) -set-option -ga terminal-overrides ",xterm-256color:Tc" - -# Disable the status bar -set -g status off - -# Let's use the mouse -set -g mouse on - -# Do not rename the windows for me -set -g allow-rename off - -# But renumber them as we delete -set -g renumber-windows on - -# And starts indexing at 1, not 0 -set -g base-index 1 -setw -g pane-base-index 1 |