Skip to content

Commit

Permalink
add tmux, pathogen plugins (fugitive,supertab, vim-airline, `…
Browse files Browse the repository at this point in the history
…vim-sensible`), update solarized and pathogen
  • Loading branch information
atomantic committed Apr 28, 2016
1 parent db9e412 commit 7e25ffe
Show file tree
Hide file tree
Showing 14 changed files with 354 additions and 139 deletions.
15 changes: 15 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,18 @@
[submodule "z-zsh"]
path = z-zsh
url = git://github.com/sjl/z-zsh.git
[submodule ".vim/bundle/vim-sensible"]
path = .vim/bundle/vim-sensible
url = git://github.com/tpope/vim-sensible.git
[submodule ".vim/bundle/supertab"]
path = .vim/bundle/supertab
url = git://github.com/vim-scripts/supertab.git
[submodule ".vim/bundle/fugitive"]
path = .vim/bundle/fugitive
url = git://github.com/tpope/vim-fugitive.git
[submodule ".vim/bundle/vim-airline"]
path = .vim/bundle/vim-airline
url = git://github.com/vim-airline/vim-airline.git
[submodule ".vim/bundle/vim-airline-themes"]
path = .vim/bundle/vim-airline-themes
url = git://github.com/vim-airline/vim-airline-themes.git
20 changes: 20 additions & 0 deletions .tmux.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# http://www.drbunsen.org/the-text-triumvirate/

set -g default-terminal "screen-256color"

set -g default-command "reattach-to-user-namespace -l zsh"

set -g mode-mouse on
setw -g mouse-select-window on
setw -g mouse-select-pane on

# Copy mode
setw -g mode-keys vi
bind ` copy-mode
unbind [
unbind p
bind p paste-buffer
bind -t vi-copy v begin-selection
bind -t vi-copy y copy-selection
bind -t vi-copy Escape cancel
bind y run "tmux save-buffer - | reattach-to-user-namespace pbcopy"
Loading

0 comments on commit 7e25ffe

Please sign in to comment.