diff options
| author | jdhao <jdhao@hotmail.com> | 2021-12-06 21:23:59 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2021-12-06 21:23:59 +0800 |
| commit | 17a9488ba7f92ccfbd70e8ab2118f971fd40c9a4 (patch) | |
| tree | fd3e4656f6b449fbce4713362fbc173ffa7ffcd0 /lua/plugins.lua | |
| parent | 683008dac073e2255260772aaaf69f33751699e7 (diff) | |
make impatient.nvim the first plugin
Diffstat (limited to 'lua/plugins.lua')
| -rw-r--r-- | lua/plugins.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 34a4561..179cb1e 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -26,6 +26,9 @@ local util = require('packer.util') require("packer").startup({ function(use) + -- it is recommened to put impatient.nvim before any other plugins + use {'lewis6991/impatient.nvim', config = [[require('impatient')]]} + use({"wbthomason/packer.nvim", opt = true}) use {"onsails/lspkind-nvim", event = "BufEnter"} @@ -346,8 +349,6 @@ require("packer").startup({ -- show and trim trailing whitespaces use {'jdhao/whitespace.nvim', event = 'VimEnter'} - - use {'lewis6991/impatient.nvim', config = [[require('impatient')]]} end, config = { max_jobs = 16, |
