mirror of https://github.com/bjeanes/dotfiles.git
tmux stuff
parent
735fcf5550
commit
6f7c2dba34
29
Rakefile
29
Rakefile
|
@ -4,26 +4,29 @@ desc "install the dot files into user's home directory"
|
||||||
task :install do
|
task :install do
|
||||||
replace_all = false
|
replace_all = false
|
||||||
dot_files = File.dirname(__FILE__)
|
dot_files = File.dirname(__FILE__)
|
||||||
files = %w(shells/zsh/zshrc
|
files = %w(
|
||||||
shells/zsh/zshenv
|
editors/vim
|
||||||
shells/bash/bashrc
|
editors/vim/gvimrc
|
||||||
shells/bash/bash_profile
|
editors/vim/vimrc
|
||||||
misc/ackrc
|
|
||||||
misc/inputrc
|
|
||||||
misc/nanorc
|
|
||||||
misc/ctags
|
|
||||||
languages/ruby/autotest/autotest
|
languages/ruby/autotest/autotest
|
||||||
languages/ruby/gemrc
|
languages/ruby/gemrc
|
||||||
languages/ruby/irbrc
|
languages/ruby/irbrc
|
||||||
languages/ruby/rdebugrc
|
languages/ruby/rdebugrc
|
||||||
vcs/git/gitk
|
misc/ackrc
|
||||||
|
misc/ctags
|
||||||
|
misc/inputrc
|
||||||
|
misc/nanorc
|
||||||
|
misc/tmux.conf
|
||||||
|
shells/bash/bash_profile
|
||||||
|
shells/bash/bashrc
|
||||||
|
shells/zsh/zshenv
|
||||||
|
shells/zsh/zshrc
|
||||||
|
vcs/git/gitattributes
|
||||||
vcs/git/gitconfig
|
vcs/git/gitconfig
|
||||||
vcs/git/gitignore
|
vcs/git/gitignore
|
||||||
vcs/git/gitattributes
|
vcs/git/gitk
|
||||||
vcs/hg/hgrc
|
vcs/hg/hgrc
|
||||||
editors/vim
|
)
|
||||||
editors/vim/gvimrc
|
|
||||||
editors/vim/vimrc)
|
|
||||||
|
|
||||||
files = Hash[files.zip(Array.new(files.size, "~/."))]
|
files = Hash[files.zip(Array.new(files.size, "~/."))]
|
||||||
# files["ruby/global.gems"] = "~/.rvm/gemsets/"
|
# files["ruby/global.gems"] = "~/.rvm/gemsets/"
|
||||||
|
|
|
@ -48,6 +48,11 @@ bind-key p choose-buffer
|
||||||
# delete the most recently copied buffer of text (default key was '-')
|
# delete the most recently copied buffer of text (default key was '-')
|
||||||
bind-key x delete-buffer
|
bind-key x delete-buffer
|
||||||
|
|
||||||
|
# Notifying if other windows has activities
|
||||||
|
setw -g monitor-activity on
|
||||||
|
set -g visual-activity on
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Screen-like key bindings
|
# Screen-like key bindings
|
||||||
|
|
||||||
|
@ -79,6 +84,7 @@ bind-key -r > resize-pane -R 3
|
||||||
bind-key -r + resize-pane -U 1
|
bind-key -r + resize-pane -U 1
|
||||||
bind-key -r = resize-pane -D 1
|
bind-key -r = resize-pane -D 1
|
||||||
|
|
||||||
|
set -g utf8 on
|
||||||
|
|
||||||
# Statusbar settings
|
# Statusbar settings
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue