Julio Biason
8 years ago
19 changed files with 33 additions and 0 deletions
@ -0,0 +1,7 @@ |
|||||||
|
#!/bin/sh |
||||||
|
|
||||||
|
ln -sf $PWD/vim/configs/vimrc ~/.vim/vimrc |
||||||
|
ln -sf $PWD/vim/configs/gvimrc ~/.vim/gvimrc |
||||||
|
ln -sf $PWD/vim/UltiSnips ~/.vim/UltiSnips |
||||||
|
|
||||||
|
ln -sf $PWD/tmux/tmux.conf ~/.tmux.conf |
@ -0,0 +1,26 @@ |
|||||||
|
# remap prefix to Control + a |
||||||
|
set -g prefix C-a |
||||||
|
# bind 'C-a C-a' to type 'C-a' |
||||||
|
bind C-a send-prefix |
||||||
|
unbind C-b |
||||||
|
|
||||||
|
# use the damn mouse, for a change |
||||||
|
setw -g mouse on |
||||||
|
|
||||||
|
# colorful terminal |
||||||
|
set -g default-terminal "screen-256color" |
||||||
|
|
||||||
|
# powerline line |
||||||
|
run-shell "powerline-daemon -q" |
||||||
|
source "/usr/share/tmux/powerline.conf" |
||||||
|
|
||||||
|
# do not wait after switching panels |
||||||
|
set-option -g repeat-time 0 |
||||||
|
|
||||||
|
# Pane and window management with function keys |
||||||
|
bind-key -n F4 split-window |
||||||
|
bind-key -n F5 split-window -h |
||||||
|
bind-key -n F7 new-window |
||||||
|
|
||||||
|
# history |
||||||
|
set-option -g history-limit 7000 |
Loading…
Reference in new issue