This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""""""""""""""""""""""""""""""""" | |
" => Plugins | |
" """"""""""""""""""""""""""""""""" | |
call plug#begin('~/.vim/plugged') | |
Plug 'altercation/vim-colors-solarized' " solarized colors | |
Plug 'bronson/vim-trailing-whitespace' " view trailing whitespace | |
Plug 'scrooloose/nerdtree' " file viewer | |
Plug 'junegunn/vim-easy-align' " alignment | |
Plug 'bling/vim-airline' " Bottom bar | |
Plug 'tpope/vim-fugitive' " Git stuff |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unbind C-b | |
set -g prefix ` | |
bind ` send-prefix | |
bind-key v split-window -h | |
bind-key h split-window -v | |
set -g mode-mouse on | |
set -g mouse-resize-pane on | |
set -g mouse-select-pane on |