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