style: minor styling improvements

This commit is contained in:
2025-09-18 21:20:46 +02:00
parent ff2da6e031
commit 6e28162030
4 changed files with 60 additions and 37 deletions

View File

@@ -37,7 +37,7 @@ vim.cmd("set clipboard=unnamedplus")
-- ╰───────╯
vim.opt.fillchars = {
horiz = "",
vert = "",
vert = "·",
stl = " ",
eob = " ",
}
@@ -46,3 +46,12 @@ vim.opt.listchars = {
trail = " ",
nbsp = "+",
}
vim.fn.sign_define("DiagnosticSignError",
{ text = "", texthl = "DiagnosticSignError" })
vim.fn.sign_define("DiagnosticSignWarn",
{ text = "", texthl = "DiagnosticSignWarn" })
vim.fn.sign_define("DiagnosticSignInfo",
{ text = "", texthl = "DiagnosticSignInfo" })
vim.fn.sign_define("DiagnosticSignHint",
{ text = "󰌵", texthl = "DiagnosticSignHint" })