diff options
| author | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-06-03 18:03:29 +0100 |
|---|---|---|
| committer | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-06-03 18:03:29 +0100 |
| commit | 18f23bd8a9e6b9871110f54a53552c9ce4718db8 (patch) | |
| tree | 0dc679eb69c519f09e92a9e24de19aea555983f3 | |
| parent | 37c9a6f18abd074d9316cc2afe7d4f9dbd2428e8 (diff) | |
| parent | 7ccd48274bdd76b76fcffe9073de62289bcfcc22 (diff) | |
Merge branch '18-impatient' into vgg
| -rw-r--r-- | init.lua | 1 | ||||
| -rw-r--r-- | lua/user/impatient.lua | 6 | ||||
| -rw-r--r-- | lua/user/plugins.lua | 1 |
3 files changed, 8 insertions, 0 deletions
@@ -15,3 +15,4 @@ require "user.bufferline" require "user.lualine" require "user.toggleterm" require "user.project" +require "user.impatient" diff --git a/lua/user/impatient.lua b/lua/user/impatient.lua new file mode 100644 index 0000000..84419e0 --- /dev/null +++ b/lua/user/impatient.lua @@ -0,0 +1,6 @@ +local status_ok, impatient = pcall(require, "impatient") +if not status_ok then + return +end + +impatient.enable_profile() diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua index 8f7e88d..d228148 100644 --- a/lua/user/plugins.lua +++ b/lua/user/plugins.lua @@ -51,6 +51,7 @@ return packer.startup(function(use) use 'nvim-lualine/lualine.nvim' use "akinsho/toggleterm.nvim" use "ahmedkhalf/project.nvim" + use 'lewis6991/impatient.nvim' use 'kyazdani42/nvim-web-devicons' use 'kyazdani42/nvim-tree.lua' |
