summaryrefslogtreecommitdiffstats
path: root/lua/conf/plugins/ts-autotag.lua
blob: 915ddad39f96f7a243bd1f2f8ff163879bfca365 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
return { 'windwp/nvim-ts-autotag',
  requires = {
    'nvim-telescope/telescope.nvim',
    'nvim-treesitter/nvim-treesitter'
  },
  disable = not vim.fn.has("nvim-0.9.5"),

  function()
    require('nvim-ts-autotag').setup {}
  end
}