diff options
| -rw-r--r-- | lua/user/pack.lua | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/lua/user/pack.lua b/lua/user/pack.lua index 918ab41..b96f753 100644 --- a/lua/user/pack.lua +++ b/lua/user/pack.lua @@ -148,7 +148,18 @@ return packer.startup(function(use) use("folke/which-key.nvim") -- use("folke/zen-mode.nvim") -- use("romainl/vim-cool") -- - use "antoinemadec/FixCursorHold.nvim" -- + use("antoinemadec/FixCursorHold.nvim") -- + use({ + "folke/trouble.nvim", + requires = "nvim-tree/nvim-web-devicons", + config = function() + require("trouble").setup { + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below + } + end + }) use("airblade/vim-rooter") -- --use("vim-test/vim-test") -- --use({ |
