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

19 lines
508 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-17 16:44:25 +01:00
add = { text = icons.git.LineAdded },
change = { text = icons.git.LineModified },
delete = { text = icons.git.LineRemoved },
topdelete = { text = icons.git.LineRemoved },
changedelete = { text = icons.git.FileRenamed },
untracked = { text = icons.git.FileIgnored },
},
}
return M