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.lua64
1 files changed, 32 insertions, 32 deletions
diff --git a/nvim/lua/plugins/editing.lua b/nvim/lua/plugins/editing.lua
index 38e651c..b9f9283 100644
--- a/nvim/lua/plugins/editing.lua
+++ b/nvim/lua/plugins/editing.lua
@@ -1,32 +1,32 @@
1return { 1return {
2 { 2 {
3 "tpope/vim-repeat", 3 "tpope/vim-repeat",
4 event = "VeryLazy", 4 event = "VeryLazy",
5 }, 5 },
6 6
7 { 7 {
8 "tpope/vim-surround", -- alternative: "kylechui/nvim-surround" 8 "tpope/vim-surround", -- alternative: "kylechui/nvim-surround"
9 event = "VeryLazy", 9 event = "VeryLazy",
10 }, 10 },
11 11
12 { 12 {
13 "romainl/vim-cool", 13 "romainl/vim-cool",
14 event = "VeryLazy", 14 event = "VeryLazy",
15 }, 15 },
16 16
17 { 17 {
18 "windwp/nvim-autopairs", 18 "windwp/nvim-autopairs",
19 event = "InsertEnter", 19 event = "InsertEnter",
20 config = true, 20 config = true,
21 }, 21 },
22 22
23 { 23 {
24 "windwp/nvim-ts-autotag", 24 "windwp/nvim-ts-autotag",
25 event = "InsertEnter", 25 event = "InsertEnter",
26 }, 26 },
27 27
28 { 28 {
29 "preservim/vim-markdown", 29 "preservim/vim-markdown",
30 ft = "markdown", 30 ft = "markdown",
31 }, 31 },
32} 32}