diff options
author | crupest <crupest@outlook.com> | 2023-09-08 17:57:37 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-09-09 09:22:26 +0800 |
commit | 68afce38678c8b680c1f1afd93056afa5310c2e2 (patch) | |
tree | 428b1905085e48dace6b834a688a76f4ae1c8bdb /configs/nvim/lua/plugins | |
parent | cf4a0c5f4486702cf2f1e9314a9830129fea3709 (diff) | |
download | crupest-68afce38678c8b680c1f1afd93056afa5310c2e2.tar.gz crupest-68afce38678c8b680c1f1afd93056afa5310c2e2.tar.bz2 crupest-68afce38678c8b680c1f1afd93056afa5310c2e2.zip |
Update nvim config.
Diffstat (limited to 'configs/nvim/lua/plugins')
-rw-r--r-- | configs/nvim/lua/plugins/plenary-nvim.lua | 3 | ||||
-rw-r--r-- | configs/nvim/lua/plugins/trouble-nvim.lua | 3 | ||||
-rw-r--r-- | configs/nvim/lua/plugins/which-key-nvim.lua | 8 |
3 files changed, 14 insertions, 0 deletions
diff --git a/configs/nvim/lua/plugins/plenary-nvim.lua b/configs/nvim/lua/plugins/plenary-nvim.lua new file mode 100644 index 0000000..d2c1874 --- /dev/null +++ b/configs/nvim/lua/plugins/plenary-nvim.lua @@ -0,0 +1,3 @@ +return { + "nvim-lua/plenary.nvim" +} diff --git a/configs/nvim/lua/plugins/trouble-nvim.lua b/configs/nvim/lua/plugins/trouble-nvim.lua new file mode 100644 index 0000000..3ed7ee3 --- /dev/null +++ b/configs/nvim/lua/plugins/trouble-nvim.lua @@ -0,0 +1,3 @@ +return { + "folke/trouble.nvim", +} diff --git a/configs/nvim/lua/plugins/which-key-nvim.lua b/configs/nvim/lua/plugins/which-key-nvim.lua new file mode 100644 index 0000000..11be1bd --- /dev/null +++ b/configs/nvim/lua/plugins/which-key-nvim.lua @@ -0,0 +1,8 @@ +return { + "folke/which-key.nvim", + event = "VeryLazy", + init = function() + vim.o.timeout = true + vim.o.timeoutlen = 300 + end, +} |