diff options
author | mhsn <mail@mhsn.net> | 2025-02-25 12:47:26 +0000 |
---|---|---|
committer | mhsn <mail@mhsn.net> | 2025-02-25 12:47:26 +0000 |
commit | c6e89431ec3848bb465c8353471d41b19db2fe1c (patch) | |
tree | 1eec01ee09733ea102e192bd204bde976cf2212c | |
parent | be561102c08d2ee7af7d35db71b1c176f96e52f4 (diff) | |
download | nvim-c6e89431ec3848bb465c8353471d41b19db2fe1c.tar.gz nvim-c6e89431ec3848bb465c8353471d41b19db2fe1c.zip |
install kylechui/nvim-surround
-rw-r--r-- | lazy-lock.json | 1 | ||||
-rw-r--r-- | lua/plugins/nvim-surround.lua | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lazy-lock.json b/lazy-lock.json index 22da4f7..10c82dd 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -12,6 +12,7 @@ "nvim-autopairs": { "branch": "master", "commit": "68f0e5c3dab23261a945272032ee6700af86227a" }, "nvim-cmp": { "branch": "main", "commit": "5a11682453ac6b13dbf32cd403da4ee9c07ef1c3" }, "nvim-lspconfig": { "branch": "master", "commit": "9e932edb0af4e20880685ddb96a231669fbe8091" }, + "nvim-surround": { "branch": "main", "commit": "ae298105122c87bbe0a36b1ad20b06d417c0433e" }, "nvim-tree.lua": { "branch": "master", "commit": "6709463b2d18e77f7a946027917aa00d4aaed6f4" }, "nvim-treesitter": { "branch": "master", "commit": "f0ff9f0e5dab10123d3192b12556aa8f88859790" }, "nvim-web-devicons": { "branch": "master", "commit": "1020869742ecb191f260818234517f4a1515cfe8" }, diff --git a/lua/plugins/nvim-surround.lua b/lua/plugins/nvim-surround.lua new file mode 100644 index 0000000..f7737a9 --- /dev/null +++ b/lua/plugins/nvim-surround.lua @@ -0,0 +1,9 @@ +return { + { + "kylechui/nvim-surround", + version = "*", + config = function() + require("nvim-surround").setup({}) + end, + }, +} |