feat: minor styling + context plugins
This commit is contained in:
26
init.lua
26
init.lua
@@ -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" })
|
||||
|
||||
Reference in New Issue
Block a user