add tmux dotfiles
This commit is contained in:
parent
f8dd4a0867
commit
c56f20d6ae
3 changed files with 40 additions and 0 deletions
1
.vimrc
1
.vimrc
|
@ -83,6 +83,7 @@ set visualbell
|
||||||
set virtualedit=block
|
set virtualedit=block
|
||||||
set scrolloff=1
|
set scrolloff=1
|
||||||
set wildmenu
|
set wildmenu
|
||||||
|
set term=screen-256color
|
||||||
|
|
||||||
" tabs and line wrap
|
" tabs and line wrap
|
||||||
set tabstop=4
|
set tabstop=4
|
||||||
|
|
2
setup.sh
2
setup.sh
|
@ -4,11 +4,13 @@
|
||||||
rm -f ~/.zshrc
|
rm -f ~/.zshrc
|
||||||
rm -f ~/.vimrc
|
rm -f ~/.vimrc
|
||||||
rm -rf ~/.vim
|
rm -rf ~/.vim
|
||||||
|
rm -f ~/.tmux.conf
|
||||||
|
|
||||||
# create symbolic links to dotfiles
|
# create symbolic links to dotfiles
|
||||||
ln -s ~/.dotfiles/.vimrc ~/.vimrc
|
ln -s ~/.dotfiles/.vimrc ~/.vimrc
|
||||||
ln -s ~/.dotfiles/.zshrc ~/.zshrc
|
ln -s ~/.dotfiles/.zshrc ~/.zshrc
|
||||||
ln -s ~/.dotfiles/.vim ~/.vim
|
ln -s ~/.dotfiles/.vim ~/.vim
|
||||||
|
ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf
|
||||||
|
|
||||||
# install vundle
|
# install vundle
|
||||||
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
|
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
|
||||||
|
|
37
tmux.conf
Normal file
37
tmux.conf
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
#### COLOUR (Solarized dark)
|
||||||
|
|
||||||
|
# default statusbar colors
|
||||||
|
set-option -g status-bg black #base02
|
||||||
|
set-option -g status-fg yellow #yellow
|
||||||
|
set-option -g status-attr default
|
||||||
|
|
||||||
|
# default window title colors
|
||||||
|
set-window-option -g window-status-fg brightblue #base0
|
||||||
|
set-window-option -g window-status-bg default
|
||||||
|
#set-window-option -g window-status-attr dim
|
||||||
|
|
||||||
|
# active window title colors
|
||||||
|
set-window-option -g window-status-current-fg brightred #orange
|
||||||
|
set-window-option -g window-status-current-bg default
|
||||||
|
#set-window-option -g window-status-current-attr bright
|
||||||
|
|
||||||
|
# pane border
|
||||||
|
set-option -g pane-border-fg black #base02
|
||||||
|
set-option -g pane-active-border-fg brightgreen #base01
|
||||||
|
|
||||||
|
# message text
|
||||||
|
set-option -g message-bg black #base02
|
||||||
|
set-option -g message-fg brightred #orange
|
||||||
|
|
||||||
|
# pane number display
|
||||||
|
set-option -g display-panes-active-colour blue #blue
|
||||||
|
set-option -g display-panes-colour brightred #orange
|
||||||
|
|
||||||
|
# clock
|
||||||
|
set-window-option -g clock-mode-colour green #green
|
||||||
|
|
||||||
|
# bell
|
||||||
|
set-window-option -g window-status-bell-style fg=black,bg=red #base02, red
|
||||||
|
|
||||||
|
# term color
|
||||||
|
set -g default-terminal "screen-256color"
|
Loading…
Add table
Reference in a new issue