aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/editing.lua
blob: d1c3447dc09792447c96271ecf8b2993c8079c09 (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
return {
  { "tpope/vim-repeat", event = "VeryLazy" },
  { "tpope/vim-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"
  },
}