From 17a9488ba7f92ccfbd70e8ab2118f971fd40c9a4 Mon Sep 17 00:00:00 2001 From: jdhao Date: Mon, 6 Dec 2021 21:23:59 +0800 Subject: [PATCH] make impatient.nvim the first plugin --- lua/plugins.lua | 5 +++-- 1 file 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,