vote up 3 vote down star
1

Huge files take forever to load and work with in vim, due to syntax-highlighting.

I'm looking for a way to limit size of highlighted files, such that files larger than (say) 10MB will be colorless.

flag

80% accept rate

5 Answers

vote up 0 vote down check

Adding the following line to _vimrc does the trick, with a bonus: it handles gzipped files, too (which is a common case with huge files):

autocmd BufWinEnter * if line2byte(line("$") + 1) > 1000000 | syntax clear | endif
link|flag
vote up 7 vote down

Add to your .vimrc:

autocmd BufReadPre * if getfsize(expand("%")) > 10000000 | syntax off | endif

Note that this disables syntax highlighting in ALL buffers; syntax is a global vim thing and cannot be restricted to a single buffer.

link|flag
using 'syntax clear' instead of 'syntax off' applies to the one buffer only. – Paul Oyster Nov 24 '08 at 7:03
For some reason I cannot mark this answer as accepted, but it is... – Paul Oyster Nov 24 '08 at 7:04
vote up 1 vote down

vim -u NONE <filename>

This will skip all initializations from configuration files.

Use uppercase U when running gvim.

"-i NONE" does only exclude viminfo from being loaded. If you defined syntax hilighting in there, that would help too.

link|flag
vote up 0 vote down

vim -c 'syntax off' filename.ext

link|flag
This will switch off highlighting after loading the file. – HS Oct 7 '08 at 13:15
vote up 4 vote down

I haven't tried it myself, but the LargeFile plugin seems to be exactly to address the kind of stuff you're looking for.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.