1
0
Fork 0
dotfiles/.config/nvim/lua/plugins/misc/gitsigns.lua

19 lines
467 B
Lua
Raw Normal View History

local M = { "lewis6991/gitsigns.nvim" }
2024-01-25 00:10:11 +01:00
M.event = { "BufReadPost", "BufNewFile" }
2024-01-17 16:44:25 +01:00
local icons = require('config.icons')
2024-01-24 00:48:37 +01:00
M.opts = {
signs = {
2024-01-26 17:21:37 +01:00
add = { text = icons.Added },
change = { text = icons.Modified },
delete = { text = icons.Removed },
topdelete = { text = icons.Removed },
changedelete = { text = icons.ChangeDelete },
untracked = { text = icons.Untracked },
},
}
return M