From 768af98c50d802620add48b390bd6b4cd22bf979 Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Fri, 14 Oct 2022 12:51:33 -0700 Subject: [PATCH] Add `asyncrun.vim`. --- README.md | 5 +++++ conf/plugins.vim | 3 +++ 2 files changed, 8 insertions(+) diff --git a/README.md b/README.md index 58786aa..2a083ba 100644 --- a/README.md +++ b/README.md @@ -85,3 +85,8 @@ to activate the LSP support. ### Org Mode `vim-orgmode` is installed. The usage documentation can be found [here](https://github.com/jceb/vim-orgmode/blob/master/doc/orgguide.txt). + +### Async Command Line + +[Asyncrun.vim](https://github.com/skywind3000/asyncrun.vim) is installed. You can use this to run shell commands asynchronously. +To do this type `:AsyncRun `. diff --git a/conf/plugins.vim b/conf/plugins.vim index fbe2667..620e91d 100644 --- a/conf/plugins.vim +++ b/conf/plugins.vim @@ -46,4 +46,7 @@ Plug 'w0rp/ale' "" Planning Plug 'jceb/vim-orgmode' +"" Commands +Plug 'skywind3000/asyncrun.vim' + call plug#end()