diff options
| author | Sylvain Herlédan <sylvain.herledan@hrafnagud.info> | 2026-03-19 15:05:29 +0100 |
|---|---|---|
| committer | Sylvain Herlédan <sylvain.herledan@hrafnagud.info> | 2026-03-19 15:05:29 +0100 |
| commit | 6538c06d14bf33933d8e91ebe4b167001c3614bc (patch) | |
| tree | a042799b36224b9dbc43cdb5cd2ab22277ce811a | |
| parent | 7eb6e5ecb3e13ad8ad00bfb42729bdedbad30313 (diff) | |
| download | dotfiles-6538c06d14bf33933d8e91ebe4b167001c3614bc.tar.gz dotfiles-6538c06d14bf33933d8e91ebe4b167001c3614bc.tar.bz2 dotfiles-6538c06d14bf33933d8e91ebe4b167001c3614bc.zip | |
The limit is there to prevent performance issues with files that contain very
long lines, but will result in a mess if it is reached while a highlight color
was in use. So setting the limit too low is not advised either.
| -rw-r--r-- | vimrc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -30,8 +30,8 @@ call dein#end() filetype plugin indent on syntax enable -" Fix performance issue with long lines -set synmaxcol=200 +" Limit size of line slice analyzed for syntax highlighting to save performance +set synmaxcol=500 " Fix splits after resize events autocmd VimResized * wincmd = |
