9 lines
137 B
Lua
9 lines
137 B
Lua
--- Ensure plugin is avaiable
|
|
local ok, comment = pcall(require, "Comment")
|
|
if not ok then
|
|
return
|
|
end
|
|
|
|
--- Load plugin
|
|
comment.setup()
|