Update configs

This commit is contained in:
Bill Niblock 2015-11-03 20:38:01 -05:00
parent afbfec31a8
commit e3fccf5fb2
3 changed files with 48 additions and 4 deletions

View file

@ -4,7 +4,7 @@
~/.dotfiles: '' ~/.dotfiles: ''
~/.vim: vim/vim/ ~/.vim: vim/vim/
~/.vimrc: vim/vimrc ~/.vimrc: vim/vimrc
~/.vimrc.bundle: vim/vimrc.bundle ~/.vimrc.bundles: vim/vimrc.bundles
~/.gitconfig: git/gitconfig ~/.gitconfig: git/gitconfig
~/.gitignore: git/gitignore ~/.gitignore: git/gitignore
~/.tmux.conf: tmux/tmux.conf ~/.tmux.conf: tmux/tmux.conf

View file

@ -6,15 +6,56 @@
#tmux display things in 256 colors #tmux display things in 256 colors
set -g default-terminal "screen-256color" set -g default-terminal "screen-256color"
set -g status-utf8 on
#start window numbers at 1 to match keyboard order with tmux window order #start window numbers at 1 to match keyboard order with tmux window order
set -g base-index 1 set -g base-index 1
set-window-option -g pane-base-index 1 setw -g pane-base-index 1
#renumber windows sequentially after closing any of them #renumber windows sequentially after closing any of them
set -g renumber-windows on set -g renumber-windows on
#change default delay to be a bit more responsive
set -s escape-time 1
######
# Colors
###
## Status Bar and Related Items
# Bar itself
set -g status-fg white
set -g status-bg black
# window list
setw -g window-status-fg cyan
setw -g window-status-bg default
setw -g window-status-attr dim
setw -g window-status-current-fg white
setw -g window-status-current-bg red
setw -g window-status-current-attr bright
## Pane Dividers
# set -g pane-border-fg color
# set -g pane-border-bg color
set -g pane-active-border-fg white
set -g pane-active-border-bg yellow
## Command Line
set -g message-fg red
set -g message-bg black
set -g message-attr bright
######
# Status Line
###
set -g status-utf8 on
setw -g monitor-activity on
set -g visual-activity on
# set -g status-left
# set -g status-right
###### ######
# Keybinds # Keybinds
### ###

View file

@ -87,7 +87,7 @@ cmap w!! w !sudo tee > /dev/null %
nnoremap <silent> <leader>n :set rnu!<CR> nnoremap <silent> <leader>n :set rnu!<CR>
" Easy-toggle nohlsearch " Easy-toggle nohlsearch
nnoremap <silent> <leader>s :set nohlsearch!<CR> nnoremap <silent> <leader>h :set nohlsearch!<CR>
" Edit dotfiles with <leader>d " Edit dotfiles with <leader>d
" v is for vim " v is for vim
@ -101,3 +101,6 @@ nnoremap <silent> <leader>dd :tabnew ~/.dotfiles/install.conf.yaml<CR>
" Remap ESC in insert mode " Remap ESC in insert mode
inoremap jk <esc> inoremap jk <esc>
" Toggle spell-check
nmap <silent> <leader>s :set spell!<CR>