dotfiles/.config/nvim/lua/theming.lua

10 lines
202 B
Lua

return {
config = function()
vim.opt.termguicolors = true
--- LEGACY
-- Change pane split styling
vim.api.nvim_set_hl(0, "VertSplit", { link = "Conceal"})
end
}