aboutsummaryrefslogtreecommitdiff
path: root/plugin/40-misc.lua
diff options
context:
space:
mode:
authorPolesznyák Márk <contact@pml68.dev>2026-04-04 03:16:27 +0200
committerPolesznyák Márk <contact@pml68.dev>2026-04-04 10:12:16 +0200
commit8bb513a86e8bea07fdb8cea71d254d46ffc7806b (patch)
tree745bd411d173e4da9355b214dc74edde08f42692 /plugin/40-misc.lua
parentfeat: enable ui2, add back LspLog command (diff)
downloadnvim-8bb513a86e8bea07fdb8cea71d254d46ffc7806b.tar.gz
feat!: migrate to vim.pack
Diffstat (limited to '')
-rw-r--r--plugin/40-misc.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/plugin/40-misc.lua b/plugin/40-misc.lua
new file mode 100644
index 0000000..94e46e0
--- /dev/null
+++ b/plugin/40-misc.lua
@@ -0,0 +1,17 @@
+vim.schedule(function()
+ vim.pack.add({
+ "https://github.com/andweeb/presence.nvim",
+ "https://github.com/NStefan002/screenkey.nvim",
+ "https://github.com/NStefan002/visual-surround.nvim",
+ "https://github.com/christoomey/vim-tmux-navigator",
+ "https://github.com/artemave/workspace-diagnostics.nvim",
+ "https://github.com/lukas-reineke/indent-blankline.nvim",
+ })
+
+ require("presence").setup({
+ main_image = "file",
+ })
+ require("screenkey").setup({})
+ require("visual-surround").setup({})
+ require("ibl").setup()
+end)