diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2016-07-19 22:16:22 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2016-07-19 22:16:22 +1200 |
commit | dc1ee94bca1f8507c15d85a5a3e8e4f57ef9f2c3 (patch) | |
tree | e179ca5be350149267e17f7de46952bb215741b2 | |
parent | Specify encoding of .vimrc (diff) | |
download | dotfiles-dc1ee94bca1f8507c15d85a5a3e8e4f57ef9f2c3.tar.gz dotfiles-dc1ee94bca1f8507c15d85a5a3e8e4f57ef9f2c3.zip |
Increase context for syntax highlighting
-rw-r--r-- | vim/vimrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -62,8 +62,9 @@ endif " Options dependent on the syntax feature if has('syntax') - " Use syntax highlighting + " Use syntax highlighting with 100 lines of context syntax enable + syntax sync minlines=100 " Use my custom color scheme if possible, otherwise I'm happy with whatever " the default is, and it usually cares about my background |