Created
November 29, 2012 03:28
-
-
Save zires/4166612 to your computer and use it in GitHub Desktop.
vimrc config
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
| let mapleader = "," | |
| "-------------------------------------------------------- | |
| "" highline current line & column | |
| " DOES NOT WORK with colorscheme solarized and blackboard | |
| " "-------------------------------------------------------- | |
| set cursorline | |
| set cursorcolumn | |
| highlight cursorline term=underline cterm=underline ctermbg=0 gui=NONE guibg=Grey40 | |
| if has("autocmd") | |
| " current line | |
| au WinLeave * set nocursorline | |
| au WinEnter * set cursorline | |
| " current column | |
| au WinLeave * set nocursorcolumn | |
| au WinEnter * set cursorcolumn | |
| endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment