From b331079ee470c3562a1831acf01911352b18edf7 Mon Sep 17 00:00:00 2001 From: elkowar Date: Sun, 26 Jan 2025 18:28:51 +0100 Subject: [PATCH] Some vim stuff --- eggs/nvim/lazy-lock.json | 3 +++ eggs/nvim/lazyvim.json | 4 +++- eggs/nvim/lua/plugins/lazyvim.lua | 2 +- eggs/nvim/lua/plugins/treesitter.lua | 10 ++++++++++ 4 files changed, 17 insertions(+), 2 deletions(-) diff --git a/eggs/nvim/lazy-lock.json b/eggs/nvim/lazy-lock.json index e0b764f..c1dfde8 100644 --- a/eggs/nvim/lazy-lock.json +++ b/eggs/nvim/lazy-lock.json @@ -25,10 +25,13 @@ "mason-lspconfig.nvim": { "branch": "main", "commit": "97d9f1d3ad205dece6bcafd1d71cf1507608f3c7" }, "mason.nvim": { "branch": "main", "commit": "e2f7f9044ec30067bc11800a9e266664b88cda22" }, "mini.ai": { "branch": "main", "commit": "ebb04799794a7f94628153991e6334c3304961b8" }, + "mini.animate": { "branch": "main", "commit": "d14190ac3040116540889e2ebc25f488b195799e" }, "mini.comment": { "branch": "main", "commit": "a56581c40c19fa26f2b39da72504398de3173c5a" }, + "mini.hipatterns": { "branch": "main", "commit": "f34975103a38b3f608219a1324cdfc58ea660b8b" }, "mini.icons": { "branch": "main", "commit": "1c79feb7478ca773fa3dac5cadf43ced9180e861" }, "mini.move": { "branch": "main", "commit": "4caa1c212f5ca3d1633d21cfb184808090ed74b1" }, "mini.pairs": { "branch": "main", "commit": "e543c760edc5e746e5b6cbd02c066c17ead3ef16" }, + "mini.surround": { "branch": "main", "commit": "aa5e245829dd12d8ff0c96ef11da28681d6049aa" }, "neo-tree.nvim": { "branch": "main", "commit": "0774fa2085c62a147fcc7b56f0ac37053cc80217" }, "noice.nvim": { "branch": "main", "commit": "eaed6cc9c06aa2013b5255349e4f26a6b17ab70f" }, "nui.nvim": { "branch": "main", "commit": "53e907ffe5eedebdca1cd503b00aa8692068ca46" }, diff --git a/eggs/nvim/lazyvim.json b/eggs/nvim/lazyvim.json index 4e71622..def2a5f 100644 --- a/eggs/nvim/lazyvim.json +++ b/eggs/nvim/lazyvim.json @@ -3,11 +3,13 @@ "lazyvim.plugins.extras.ai.copilot", "lazyvim.plugins.extras.ai.copilot-chat", "lazyvim.plugins.extras.coding.mini-comment", + "lazyvim.plugins.extras.coding.mini-surround", "lazyvim.plugins.extras.editor.telescope", "lazyvim.plugins.extras.lang.json", "lazyvim.plugins.extras.lang.markdown", "lazyvim.plugins.extras.lang.rust", - "lazyvim.plugins.extras.lang.toml" + "lazyvim.plugins.extras.lang.toml", + "lazyvim.plugins.extras.util.mini-hipatterns" ], "news": { "NEWS.md": "10960" diff --git a/eggs/nvim/lua/plugins/lazyvim.lua b/eggs/nvim/lua/plugins/lazyvim.lua index 45368ab..9677324 100644 --- a/eggs/nvim/lua/plugins/lazyvim.lua +++ b/eggs/nvim/lua/plugins/lazyvim.lua @@ -26,7 +26,7 @@ return { enabled = false, }, scroll = { - enabled = false, + enabled = true, }, lazygit = { enabled = false, diff --git a/eggs/nvim/lua/plugins/treesitter.lua b/eggs/nvim/lua/plugins/treesitter.lua index eca2773..fa17e99 100644 --- a/eggs/nvim/lua/plugins/treesitter.lua +++ b/eggs/nvim/lua/plugins/treesitter.lua @@ -1,4 +1,14 @@ return { + { + "nvim-treesitter/nvim-treesitter", + version = false, + build = ":TSUpdate", + ---@type TSConfig + ---@diagnostic disable-next-line: missing-fields + opts = { + + } + }, { "nvim-treesitter/playground", cmd = { "TSPlaygroundToggle", "TSHighlightCapturesUnderCursor" },