diff --git a/dotfiles/.tmux.conf b/dotfiles/.tmux.conf index 5bfe21f..a3276b1 100644 --- a/dotfiles/.tmux.conf +++ b/dotfiles/.tmux.conf @@ -12,8 +12,14 @@ set -g @resurrect-capture-pane-contents 'on' # Settings set -g status-right "#{net_speed}" +set-option -g default-shell /bin/zsh # default shell +set -g default-terminal "screen-256color" +bind j resize-pane -D 5 +bind k resize-pane -U 5 +bind h resize-pane -L 10 +bind l resize-pane -R 10 diff --git a/dotfiles/.vimrc b/dotfiles/.vimrc index 4e4b278..c561a9c 100644 --- a/dotfiles/.vimrc +++ b/dotfiles/.vimrc @@ -15,7 +15,6 @@ call vundle#rc() " let Vundle manage Vundle, required Plugin 'VundleVim/Vundle.vim' -Plugin 'Valloric/YouCompleteMe' if iCanHazVundle == 0 echo "Installing Bundles, please ignore key map error messages" @@ -38,6 +37,7 @@ call vundle#begin() " let Vundle manage Vundle, required Plugin 'VundleVim/Vundle.vim' Plugin 'Valloric/YouCompleteMe' +Plugin 'Vimjas/vim-python-pep8-indent' " The following are examples of different formats supported. " Keep Plugin commands between vundle#begin/end. @@ -250,4 +250,7 @@ nnoremap k gk " Do not cut words when breaking lines. set linebreak +" Searching with "/": Ignore case if search term is lower case. +set smartcase + colorscheme blackboard