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: about 1 year ago
JSON representation
Vim plugin that makes viewing/editing of large files more efficient.
- Host: GitHub
- URL: https://github.com/fracpete/vim-large-files
- Owner: fracpete
- License: mit
- Created: 2020-12-12T20:16:11.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-12T20:26:19.000Z (over 5 years ago)
- Last Synced: 2024-10-19T12:15:50.465Z (over 1 year ago)
- Topics: syntax-highlighting, vim, vim-plugin
- Language: Vim script
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```