feat(nvim): add nvim-ts-autotag plugin and configuration

This commit is contained in:
Stefan Imhoff
2022-08-10 10:42:16 +02:00
parent 2a0fbcbebd
commit 77d87fd379
3 changed files with 9 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ require("kogakure.telescope")
require("kogakure.fzf")
require("kogakure.treesitter")
require("kogakure.autopairs")
require("kogakure.autotag")
require("kogakure.comment")
require("kogakure.harpoon")
require("kogakure.gitsigns")

View File

@@ -0,0 +1,7 @@
-- nvim-ts-autotag https://github.com/windwp/nvim-ts-autotag
local status_ok, autotag = pcall(require, "nvim-ts-autotag")
if not status_ok then
return
end
autotag.setup()

View File

@@ -127,6 +127,7 @@ return packer.startup(function(use)
-- Editing Files
use("windwp/nvim-autopairs") -- Autopairs, integrates with both cmp and treesitter
use("windwp/nvim-ts-autotag") -- Autoclose and autorename html tags
use("numToStr/Comment.nvim") -- Easily comment stuff
use("JoosepAlviste/nvim-ts-context-commentstring") -- Comment based on cursor location of file
use({ "iamcco/markdown-preview.nvim", run = "cd app && yarn install", cmd = "MarkdownPreview" })