You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.0 KiB
Lua

local autocmd = vim.api.nvim_create_autocmd
local M = {}
M.lazy_load_module = function()
autocmd({"BufRead", "BufNewFile"},{
group = vim.api.nvim_create_augroup("plantuml", {}),
callback = function()
plantuml_patterns = {
"%.pu", "%.uml", "%.plantuml", "%.puml", "%.iuml"
}
local bufname = vim.api.nvim_buf_get_name(0)
for _,ft in ipairs(plantuml_patterns) do
if vim.fn.fnamemodify(bufname, ":t"):match(ft) then
vim.defer_fn(function()
require("packer").loader("plantuml-syntax")
end,0)
end
end
firstline = vim.api.nvim_buf_get_lines(0,0,1,true)[1]
P(firstline)
if firestline ~= "" and firstline:match("^@startuml%s*") then
vim.defer_fn(function()
require("packer").loader("plantuml-syntax")
end,0)
end
end
})
end
return M