summaryrefslogtreecommitdiff
path: root/lua/config/plugins/code-editing.lua
blob: b63320c17b3c2ec80a8800ee93a2a5edb0cd1c35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
return {
  -- Add/change/delete surrounding delimiter pairs with ease.
  {
    "kylechui/nvim-surround",
    event = "VeryLazy",
    dependencies = {
      "nvim-treesitter/nvim-treesitter",
      "nvim-treesitter/nvim-treesitter-textobjects",
    },
    config = function()
      require("nvim-surround").setup({})
    end
  },

  -- Autopairs for neovim written in lua.
  {
    "windwp/nvim-autopairs",
    event = "InsertEnter",
    config = true,
  },
}