diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-19 16:12:09 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-19 16:12:09 +1200 |
commit | 19fa3b0b57f2daf48d443a2d90b88bd3046f002f (patch) | |
tree | 122ba8b45ca0cbc76264349b5465f32d4e69e885 /vim | |
parent | Rearrange filetype.vim final stanzas (diff) | |
download | dotfiles-19fa3b0b57f2daf48d443a2d90b88bd3046f002f.tar.gz dotfiles-19fa3b0b57f2daf48d443a2d90b88bd3046f002f.zip |
Simplify syntax settings
Diffstat (limited to 'vim')
-rw-r--r-- | vim/vimrc | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -24,9 +24,8 @@ endif " Options dependent on the syntax feature if has('syntax') && !has('g:syntax_on') - " Use syntax highlighting with 150 lines of context - silent! syntax enable - silent! syntax sync minlines=150 + " Use syntax highlighting + syntax enable " Opinionated; if the author is using color at all, it will probably be with " a dark background |