aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/editing.lua
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2026-08-12 09:19:03 +0200
committerThomas Schmucker <ts@its1.de>2026-08-12 09:19:03 +0200
commit6e5882a2fd02d30206ab9ca8aa5847b8ea09196c (patch)
tree75d3b91f9005e51b93a37b44f3ad23ce4f48bc35 /nvim/lua/plugins/editing.lua
parent41c676453cd32fac760ff26e092c9dc81874739f (diff)
downloaddotfiles-6e5882a2fd02d30206ab9ca8aa5847b8ea09196c.tar.gz
dotfiles-6e5882a2fd02d30206ab9ca8aa5847b8ea09196c.tar.bz2
dotfiles-6e5882a2fd02d30206ab9ca8aa5847b8ea09196c.zip
Normalize line endings
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 b9f9283..38e651c 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}