Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/fracpete/vim-large-files
- Owner: fracpete
- License: mit
- Created: 2020-12-12T20:16:11.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-12T20:26:19.000Z (about 4 years ago)
- Last Synced: 2024-10-19T12:15:50.465Z (3 months 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
```