diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-02-13 16:42:33 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-02-13 16:42:33 +0200 |
| commit | a5912f55a267d40416546223c11de3843e2306fc (patch) | |
| tree | 787cbcf40bc7dcc76a680e01b47463d79e0edfa9 | |
| parent | 78ee32e9a859aa1df2e296b54f9eed4ec4420a3e (diff) | |
| download | dotfiles-a5912f55a267d40416546223c11de3843e2306fc.tar.gz dotfiles-a5912f55a267d40416546223c11de3843e2306fc.zip | |
Add folke/trouble.nvim
| -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({ |
