I'm using https://github.com/w0rp/ale plugin. But it makes vim less responsive... I have a bind for ALETooggle
on <leader>l
.
It would be nice to have it disabled by default and enable by keyboard shortcut when wanted, I tried to put ALEDisable
on my .vimrc
but it gives me the error below
Error detected while processing /Users/daniel/.vimrc:
line 94:
E492: Not an editor command: ALEDisable
Press ENTER or type command to continue
Here is a sample .vimrc
that would trigger the problem
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
Plugin 'w0rp/ale'
call vundle#end() " required
filetype plugin indent on " required
noremap <leader>l :ALEToggle<CR>
ALEDisable
:help pack-add
) and considered placing this in theopt
folder? Seems like that would work well. Certainly you could create a bind to perform a:packadd ale
– PseudohermaphroditismALEDisable
to work at.vimrc
? – CeraceousALEDisable
fails because plugins are loaded after vimrc. – Gilford