Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juandac/betty-ale-vim
https://github.com/juandac/betty-ale-vim
Last synced: about 7 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/juandac/betty-ale-vim
- Owner: JuanDAC
- Created: 2021-08-03T02:17:51.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-19T15:55:53.000Z (about 3 years ago)
- Last Synced: 2023-03-09T08:21:49.108Z (over 1 year ago)
- Language: Vim script
- Size: 5.86 KB
- Stars: 10
- Watchers: 3
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# betty-ale-vim
> An extention for Ale which integrate Betty's linter of holberton school
with vim## How to install
### Prerequisites
* This is an extension of [ALE], So you need to install it first
### Installation with Vim-Plug
* List the plug with the `Plug` command
`Plug 'JuanDAC/betty-ale-vim'`* Include the betty-style and betty-doc into the ale linters
`let g:ale_linters = {'c': ['betty-style', 'betty-doc']`}#### Example
```vim
"Call Vim-plug
call plug#begin('~/.vim/plugged')
Plug 'dense-analysis/ale'| "ALE is a prerequisite
Plug 'JuanDAC/betty-ale-vim'| "Program
call plug#end()let g:ale_linters = {'c':['betty-style', 'betty-doc', 'gcc']}
```### Check it in action
![vim-ale-demo](https://media.giphy.com/media/izojA1Gn2C7rjKbdGE/giphy.gif)## Author
[JuanDAC](https://github.com/JuanDAC)
[Athesto](https://github.com/Athesto)## Support us
This is single project that we to with love, and If your like it please give us an star ⭐ and share it with your peers[ALE]: https://github.com/dense-analysis/ale