diff options
| author | 2024-01-28 19:39:47 +0100 | |
|---|---|---|
| committer | 2024-01-28 19:39:47 +0100 | |
| commit | adc02a9e5012c70b58f31866345233cc90533dc2 (patch) | |
| tree | aa427c952edf6f6d87a63fce66b599adedf822b0 /dot_config/nvim/lua/plugins/surround.lua | |
| parent | lib/sh: add jaq plugin (diff) | |
nvim: repeat, surround, wrap & new os-specific plugins
Diffstat (limited to 'dot_config/nvim/lua/plugins/surround.lua')
| -rw-r--r-- | dot_config/nvim/lua/plugins/surround.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dot_config/nvim/lua/plugins/surround.lua b/dot_config/nvim/lua/plugins/surround.lua new file mode 100644 index 0000000..a1c5b52 --- /dev/null +++ b/dot_config/nvim/lua/plugins/surround.lua @@ -0,0 +1,8 @@ +return { + "kylechui/nvim-surround", + version = "*", -- Use for stability; omit to use `main` branch for the latest features + event = "VeryLazy", + config = function() + require("nvim-surround").setup {} + end +} |
