From 8e86ccdc0dc795399e0c53c84591542e132fc3a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Deuchnord?= Date: Tue, 12 Feb 2019 07:39:20 +0000 Subject: [PATCH] Add plugin w0rp/ale (#3) --- README.md | 1 + vimrc | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9da4cc0..920892c 100644 --- a/README.md +++ b/README.md @@ -14,4 +14,5 @@ The following plugins are installed with [Vundle](https://github.com/VundleVim/V | Plugin | Description | | ------ | ----------- | +| [w0rp/ale](https://github.com/w0rp/ale) | Asynchronous linting/fixing for Vim and Language Server Protocol (LSP) integration diff --git a/vimrc b/vimrc index 2e23911..fbd0c10 100644 --- a/vimrc +++ b/vimrc @@ -18,7 +18,9 @@ call vundle#begin() Plugin 'VundleVim/Vundle.vim' -" Add plugins here +" Asynchronous linting/fixing for Vim and Language Server Protocol (LSP) +" integration - https://github.com/w0rp/ale +Plugin 'w0rp/ale' call vundle#end()