Ditch hyper, update tmux keybindings to 2.4

main
Steffen Rademacker 7 years ago
parent daff4b107f
commit 7c1be5433e

@ -1,12 +0,0 @@
module.exports = {
config: {
bell: false,
fontSize: 12,
fontFamily: 'Hack, Menlo, "DejaVu Sans Mono", Consolas, monospace',
},
plugins: [
'hyper-hybrid-minimal',
'hyperterm-1password'
]
};

@ -39,7 +39,6 @@ ln -s ~/dotfiles/editorconfig ~/.editorconfig
ln -s ~/dotfiles/gemrc ~/.gemrc
ln -s ~/dotfiles/gitconfig ~/.gitconfig
ln -s ~/dotfiles/gitignore ~/.gitignore
ln -s ~/dotfiles/hyperterm.js ~/.hyperterm.js
ln -s ~/dotfiles/khdrc ~/.khdrc
ln -s ~/dotfiles/kwm ~/.kwm
ln -s ~/dotfiles/ruby-version ~/.ruby-version

@ -11,7 +11,6 @@ brew cask install firefox
brew cask install flux
brew cask install google-chrome
brew cask install google-chrome-canary
brew cask install hyper
brew cask install imagealpha
brew cask install imageoptim
brew cask install kap
@ -21,6 +20,7 @@ brew cask install qlstephen
brew cask install sequel-pro
brew cask install sketch
brew cask install skype
brew cask install slack
brew cask install spotify
brew cask install telegram
brew cask install virtualbox

@ -27,8 +27,9 @@ bind-key r source-file ~/.tmux.conf \; display-message "Configuration reloaded!"
# Copy & Paste with clipper -- see https://github.com/wincent/clipper
# starting copy & paste with Ctrl+a [
bind-key -t vi-copy v begin-selection
bind-key -t vi-copy y copy-pipe "nc localhost 8377"
bind-key -T copy-mode-vi 'v' send-keys -X begin-selection
bind-key -T copy-mode-vi 'y' send-keys -X copy-pipe-and-cancel "nc localhost 8377"
bind-key -T copy-mode-vi Escape send -X cancel
# Saner window splitting / new windows
bind-key \ split-window -h -c "#{pane_current_path}"
@ -58,8 +59,6 @@ set -g mouse on
bind -n WheelUpPane if-shell -F -t = "#{mouse_any_flag}" "send-keys -M" "if -Ft= '#{pane_in_mode}' 'send-keys -M' 'select-pane -t=; copy-mode -e; send-keys -M'"
bind -n WheelDownPane select-pane -t= \; send-keys -M
bind -n C-WheelUpPane select-pane -t= \; copy-mode -e \; send-keys -M
bind -t vi-copy C-WheelUpPane halfpage-up
bind -t vi-copy C-WheelDownPane halfpage-down
# counting panes starts at 1
set -g base-index 1

Loading…
Cancel
Save