mirror of
https://github.com/josean-dev/dev-environment-files.git
synced 2025-01-10 02:01:22 +01:00
9 lines
146 B
Lua
9 lines
146 B
Lua
|
-- import comment plugin safely
|
||
|
local setup, comment = pcall(require, "Comment")
|
||
|
if not setup then
|
||
|
return
|
||
|
end
|
||
|
|
||
|
-- enable comment
|
||
|
comment.setup()
|