Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/curs3w4ll/vim_limit_colums
A litle vim plugin to show you if your exceeding a certains colums number in your code
https://github.com/curs3w4ll/vim_limit_colums
epitech nvim vim vim-plugin
Last synced: 12 days ago
JSON representation
A litle vim plugin to show you if your exceeding a certains colums number in your code
- Host: GitHub
- URL: https://github.com/curs3w4ll/vim_limit_colums
- Owner: Curs3W4ll
- Created: 2021-06-03T08:16:15.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-06-03T11:04:12.000Z (over 3 years ago)
- Last Synced: 2024-11-22T14:35:09.138Z (2 months ago)
- Topics: epitech, nvim, vim, vim-plugin
- Homepage:
- Size: 124 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vim_limit_colums
===
This vim plugin allow you to show if your exceed the 80 columns for Epitech![Plugin example](img/example.gif)
## Installation
There is a lot of way to install this plugin:1. If you use [VimPlug](https://github.com/junegunn/vim-plug) you can add:
```vim
Plug 'Curs3W4ll/vim_limit_colums'
```
to your `.vimrc` file and run:
```vim
:PlugInstall
```
2. Or if you use [Vundle](https://github.com/gmarik/Vundle.vim) you can add:
```vim
Plugin 'Curs3W4ll/vim_limit_colums'
```
to your `.vimrc` file and run:
```vim
:PluginInstall
```
3. And if you're using [Pathogen](https://github.com/tpope/vim-pathogen), you can just run the following command:
```
git clone https://github.com/Curs3W4ll/vim_limit_colums ~/.vim/bundle
```
4. If you're not using any of this methods you can copy its content into ~/.vim/,
But it's highly recommended to use one of the abov methods## Usage
Exceeds is highlighting by default with red color* To set a custom highlight color, just call:
```vim
let g:limit_columns_ctermcolor=''
```
Or, for gui color:
```vim
let g:limit_columns_guicolor=''
```* To enable/disable/toggle limitcolumns in a buffer call the following commands:
```vim
:EnableLimitColumns
:DisableLimitColumns
:ToggleLimitColumns
```
# Contribute
If you want new features feel free to submit your work or tell me what you want I do.