An extention for Ale which integrate Betty's linter of holberton school with vim
- This is an extension of ALE, So you need to install it first
-
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']
}
"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']}