Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save derekschrock/faa9663dce2ec0fd4853494a8f8f8479 to your computer and use it in GitHub Desktop.
Save derekschrock/faa9663dce2ec0fd4853494a8f8f8479 to your computer and use it in GitHub Desktop.
function Check_readonly()
if &readonly
highlight Normal ctermfg=white ctermbg=gray
else
highlight Normal ctermfg=white ctermbg=black
endif
endfunction
autocmd BufEnter * :call Check_readonly()
autocmd BufReadPost * :call Check_readonly()
autocmd OptionSet readonly highlight Normal ctermfg=grey ctermbg=gray
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment