git status
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.tmux.conf | |
# | |
# See the following files: | |
# | |
# /opt/local/share/doc/tmux/t-williams.conf | |
# /opt/local/share/doc/tmux/screen-keys.conf | |
# /opt/local/share/doc/tmux/vim-keys.conf | |
# | |
# URLs to read: | |
# |
-
tmux ~$ sudo apt-get install tmux
-
Para usar el tmuxinator se recomienda usar el rvm(ruby virtual machine) ya que tmuxinator es un gema ~$ curl -L https://get.rvm.io | bash -s stable --ruby=1.9.3
-
Al terminar de instalarlo instalamos luego el tmuxinator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#seteamos el prefijo | |
set -g prefix C-a | |
#limpiamos la combinación por defecto | |
unbind C-b | |
#cambiando el delay por default de ejecución de comandos de tmux | |
set -sg escape-time 1 | |
bind C-a send-prefix |