feat: style improvements + md preview

This commit is contained in:
2026-08-29 17:12:08 +02:00
parent 4e26404bd0
commit 356fa923b1
4 changed files with 37 additions and 8 deletions

View File

@@ -27,7 +27,7 @@ vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,
-- │ Colorscheme │
-- ╰─────────────╯
vim.cmd("colorscheme gruvbox") -- rose-pine, gruvbox, koda-{dark/light/moss/glade}, komau
vim.o.background = "light" -- "dark" or "light"
vim.o.background = "light" -- "dark" or "light"
-- ╭───────────────────╮
-- │ Default clipboard │
@@ -38,8 +38,13 @@ vim.cmd("set clipboard=unnamedplus")
-- │ Chars │
-- ╰───────╯
vim.opt.fillchars = {
-- horiz = "-",
-- vert = "▏", -- ▏│ ▎▍▌▋▊▉█
horiz = "", -- ⎯, ⎯
horizup = " ", -- ○
horizdown = " ",
vert = "", -- ▏│ ▎▍▌▋▊▉█
vertleft = "", -- ⏴
vertright = "", -- ⏵
verthoriz = "",
stl = " ",
eob = " ",
}