feat(renderer): add ability to set git icons in signcolumn (#1242)

This commit is contained in:
Kiyan
2022-05-14 09:54:27 +02:00
committed by GitHub
parent 46014449b6
commit f8312cd06f
5 changed files with 42 additions and 11 deletions

View File

@@ -32,7 +32,7 @@ local function add_sign(linenr, severity)
return
end
local sign_name = sign_names[severity][1]
vim.fn.sign_place(1, GROUP, sign_name, buf, { lnum = linenr })
vim.fn.sign_place(0, GROUP, sign_name, buf, { lnum = linenr, priority = 2 })
end
local function from_nvim_lsp()