my neovim configuration
at main 445 B view raw
1local M = { 2 "lewis6991/gitsigns.nvim", 3 event = { "BufReadPost", "BufNewFile", "BufWritePre" }, 4 opts = { 5 signs = { 6 add = { text = "" }, 7 change = { text = "" }, 8 delete = { text = "󰐊" }, 9 topdelete = { text = "󰐊" }, 10 changedelete = { text = "" }, 11 untracked = { text = "" }, 12 }, 13 current_line_blame = false, 14 preview_config = { 15 border = "rounded", 16 }, 17 }, 18} 19 20return M