refactor: bufferline replaced + minor styling improvements WIP

This commit is contained in:
2026-08-25 17:49:37 +02:00
parent 3d2a4e07d9
commit 016fbbfc44
7 changed files with 34 additions and 137 deletions

View File

@@ -19,14 +19,15 @@ vim.cmd("set tabstop=4")
vim.cmd("set shiftwidth=4")
vim.cmd("set noexpandtab") -- expandtab to use spaces instead of tabs
vim.cmd("set wrap")
vim.cmd("set cmdheight=0") -- HACK: hide command line while is not being used, no idea why this works without logic
vim.lsp.inlay_hint.enable(false)
vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions"
-- ╭─────────────╮
-- │ Colorscheme │
-- ╰─────────────╯
vim.cmd("colorscheme komau") -- rose-pine, gruvbox, koda-{dark/light/moss/glade}, komau
vim.o.background = "dark" -- "dark" or "light"
vim.cmd("colorscheme gruvbox") -- rose-pine, gruvbox, koda-{dark/light/moss/glade}, komau
vim.o.background = "light" -- "dark" or "light"
-- ╭───────────────────╮
-- │ Default clipboard │
@@ -38,7 +39,7 @@ vim.cmd("set clipboard=unnamedplus")
-- ╰───────╯
vim.opt.fillchars = {
-- horiz = "-",
-- vert = "▏", -- │ ▎▍▌▋▊▉█
-- vert = "▏", -- │ ▎▍▌▋▊▉█
stl = " ",
eob = " ",
}