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