Skip to content

Instantly share code, notes, and snippets.

@ashwin
Last active October 9, 2017 03:56
Show Gist options
  • Save ashwin/4730799 to your computer and use it in GitHub Desktop.
Save ashwin/4730799 to your computer and use it in GitHub Desktop.
Show cursorline only in active window of Vim
augroup CursorLineOnlyInActiveWindow
autocmd!
autocmd VimEnter,WinEnter,BufWinEnter * setlocal cursorline
autocmd WinLeave * setlocal nocursorline
augroup END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment