Created
August 31, 2011 12:18
-
-
Save reconbot/1183409 to your computer and use it in GitHub Desktop.
vimrc stuff
This file contains hidden or 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
" Make home more useful | |
map <Home> ^ | |
imap <Home> <Esc>^i | |
" stupid hack to make screen a little friendlier on systems where it wont autodetect what's running | |
let &titlestring = "vim" | |
if &term == "screen" | |
set t_ts=^[k | |
set t_fs=^[\ | |
endif | |
if &term == "screen" || &term == "xterm" | |
set title | |
endif | |
let &titleold = "bash" | |
" always show the tab bar because it's cool | |
set showtabline=2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment