mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
feat(nvim): add nvim-ts-autotag plugin and configuration
This commit is contained in:
@@ -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")
|
||||
|
||||
7
nvim/lua/kogakure/autotag.lua
Normal file
7
nvim/lua/kogakure/autotag.lua
Normal 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()
|
||||
@@ -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" })
|
||||
|
||||
Reference in New Issue
Block a user