aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/editing.lua
blob: b9f9283dfadfb378f19cdcd972e40de90d0cd588 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
return {
  {
    "tpope/vim-repeat",
    event = "VeryLazy",
  },

  {
    "tpope/vim-surround", -- alternative: "kylechui/nvim-surround"
    event = "VeryLazy",
  },

  {
    "romainl/vim-cool",
    event = "VeryLazy",
  },

  {
    "windwp/nvim-autopairs",
    event = "InsertEnter",
    config = true,
  },

  {
    "windwp/nvim-ts-autotag",
    event = "InsertEnter",
  },

  {
    "preservim/vim-markdown",
    ft = "markdown",
  },
}