Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fracpete/vim-large-files

Vim plugin that makes viewing/editing of large files more efficient.
https://github.com/fracpete/vim-large-files

syntax-highlighting vim vim-plugin

Last synced: 23 days ago
JSON representation

Vim plugin that makes viewing/editing of large files more efficient.

Awesome Lists containing this project

README

        

# vim-large-files
Vim plugin that makes viewing/editing of large files a bit more efficient,
as it turns off syntax highlighting and reduces the number of undos.

# Installation
Simply copy this plugin into your plugin directory. (See 'plugin' in the
Vim User Manual.) Additionally, you may choose to override one of the
following global variables, which are used by this plugin, in your vimrc
file:

* LargeFile (default: 1024*1024*5)

The file size in bytes beyond which a file is considered large.

For example, you could have something like this in your `.vimrc` file:

```
let LargeFile = 1024 * 1024 * 2
```