mirror of
https://github.com/windwp/nvim-ts-autotag.git
synced 2025-01-04 06:09:19 -06:00
13 lines
313 B
Lua
13 lines
313 B
Lua
local path_utils = require("tests.utils.paths")
|
|
local M = {}
|
|
|
|
M.paths = path_utils
|
|
|
|
--- Register the main plugin (`nvim-ts-autotag`) on the runtimepath if it hasn't already been
|
|
--- registered
|
|
M.rtp_register_ts_autotag = function()
|
|
vim.opt.runtimepath:append(path_utils.static.ts_autotag_dir())
|
|
end
|
|
|
|
return M
|