diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2016-11-11 19:32:38 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2016-11-11 19:32:38 -0800 |
commit | 5c9d870f0655fb52f4571eeb52c2f1f6c02581b1 (patch) | |
tree | 4afe57f670c654786b570da75e930ed227e341b3 | |
parent | [Emacs] renamed my custom files and load them with use-package. (diff) | |
download | emacs.d-5c9d870f0655fb52f4571eeb52c2f1f6c02581b1.tar.gz |
[tmux] delete configuration for tmux once again.
Diffstat (limited to '')
-rw-r--r-- | Makefile | 8 | ||||
-rw-r--r-- | tmux.conf | 56 |
2 files changed, 2 insertions, 62 deletions
diff --git a/Makefile b/Makefile index 88cda5b..a65bdaf 100644 --- a/Makefile +++ b/Makefile @@ -5,8 +5,7 @@ INSTALL = \ aspell.en.pws \ emacs.d \ gitconfig \ - gitignore \ - tmux.conf + gitignore git: git config --local user.email "franck.cuny@gmail.com" @@ -15,7 +14,7 @@ git: INSTALLED = $(patsubst %,$(INTO)/.%,$(INSTALL)) LN = @ln -sf -install: $(INSTALLED) $(HOME)/bin $(HOME)/src $(HOME)/.ssh/authorized_keys git +install: $(INSTALLED) $(HOME)/src $(HOME)/.ssh/authorized_keys git $(INTO)/.% : % @[ ! -e $@ ] || [ -h $@ ] || mv -f $@ $@.bak @@ -24,9 +23,6 @@ $(INTO)/.% : % $(HOME)/.ssh/authorized_keys: @curl https://github.com/franckcuny.keys -o $(HOME)/.ssh/authorized_keys -$(HOME)/bin: - mkdir -p $(HOME)/bin - $(HOME)/src: mkdir -p $(HOME)/src diff --git a/tmux.conf b/tmux.conf deleted file mode 100644 index 57cdddc..0000000 --- a/tmux.conf +++ /dev/null @@ -1,56 +0,0 @@ -# Prefix -set-option -g prefix C-z -unbind-key C-b -bind C-t send-prefix - -set -s escape-time 1 - -# Color -set-option -g default-terminal xterm - -# View -set-option -g status-interval 5 -set-option -g status-left-length 16 -set-option -g status-right-length 50 - -set-option -g status-bg colour41 -set-option -g status-fg colour232 -set-option -g status-attr bold -set-option -g status-left '[%H:%M]' -set-option -g status-right '[#h###S:#I:#P]' -set-option -g status-right-fg red -set-option -g status-right-bg white -set-window-option -g window-status-current-bg white -set-window-option -g window-status-current-attr bold - -# move pain like Vim -bind h select-pane -L -bind j select-pane -D -bind k select-pane -U -bind l select-pane -R - -bind-key c new-window -c "#{pane_current_path}" - -# split window -bind _ split-window -v -c "#{pane_current_path}" -bind | split-window -h -c "#{pane_current_path}" - -# move last window -bind C-z last-window -bind o last-pane - -# Option -set-window-option -g mode-keys vi -set-window-option -g automatic-rename off - -# resize pain -bind -r H resize-pane -L 2 -bind -r L resize-pane -R 2 -bind -r J resize-pane -D 2 -bind -r K resize-pane -U 2 - -# logging -bind-key Q pipe-pane "exec cat >> $HOME/tmux-#S-#W-#I.log" \; display-message 'Started logging to tmux-#S-#W-#I.log' -bind-key q pipe-pane \; display-message 'Finish logging to tmux-#S-#W-#I.log' - -bind i display-panes |