dev-environment-files/.config/nvim/lua/josean/plugins/comment.lua

9 lines
147 B
Lua
Raw Normal View History

2022-10-17 20:40:36 +02:00
-- import comment plugin safely
local setup, comment = pcall(require, "Comment")
if not setup then
return
2022-10-17 20:40:36 +02:00
end
-- enable comment
comment.setup()