aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/editing.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/plugins/editing.lua')
-rw-r--r--nvim/lua/plugins/editing.lua20
1 files changed, 20 insertions, 0 deletions
diff --git a/nvim/lua/plugins/editing.lua b/nvim/lua/plugins/editing.lua
new file mode 100644
index 0000000..44f74c6
--- /dev/null
+++ b/nvim/lua/plugins/editing.lua
@@ -0,0 +1,20 @@
1return {
2 { "tpope/vim-repeat" },
3 { "tpope/vim-surround" },
4
5 {
6 "romainl/vim-cool",
7 event = "VeryLazy",
8 },
9
10 {
11 "windwp/nvim-autopairs",
12 event = "InsertEnter",
13 config = true,
14 },
15
16 {
17 "windwp/nvim-ts-autotag",
18 event = "InsertEnter",
19 },
20}