9 lines
199 B
VimL
9 lines
199 B
VimL
" Disable spell checking which is enabled for text files
|
|
setlocal nospell
|
|
|
|
" Don't keep cursor from buffer edges
|
|
setlocal scrolloff=0
|
|
|
|
" Don't display line numbers
|
|
setlocal nonumber norelativenumber
|