Created
July 13, 2015 17:00
-
-
Save sadjow/75dea827d9e531691898 to your computer and use it in GitHub Desktop.
Make tmux works with vim on ubuntu
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
export TERM="screen-256color" | |
alias tmux="TERM=screen-256color tmux -2" |
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
export EDITOR=vim |
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
set t_Co=256 | |
colorscheme badwolf | |
set expandtab | |
set shiftwidth=2 | |
set softtabstop=2 | |
set foldmethod=indent | |
set foldlevel=99 | |
set foldlevelstart=99 | |
let g:turbux_command_prefix = 'bundle exec' |
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
Bundle 'flazz/vim-colorschemes' | |
Bundle 'tpope/vim-rails' | |
Bundle 'jgdavey/vim-turbux' | |
Bundle 'christoomey/vim-tmux-navigator' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment