feat: minor styling + context plugins

This commit is contained in:
2025-09-22 23:18:09 +02:00
parent 4279686207
commit ed66aef250
10 changed files with 213 additions and 41 deletions

View File

@@ -36,22 +36,18 @@ vim.cmd("set clipboard=unnamedplus")
-- │ Chars │
-- ╰───────╯
vim.opt.fillchars = {
horiz = "",
vert = " ",
stl = " ",
eob = " ",
horiz = "",
vert = "",
stl = " ",
eob = " ",
}
vim.opt.listchars = {
tab = "> ",
trail = " ",
nbsp = "+",
tab = "> ",
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" })
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" })