vesper.lua (731B)
1 require("vesper").setup({ 2 transparent = true, -- Boolean: Sets the background to transparent 3 italics = { 4 comments = true, -- Boolean: Italicizes comments 5 keywords = true, -- Boolean: Italicizes keywords 6 functions = true, -- Boolean: Italicizes functions 7 strings = true, -- Boolean: Italicizes strings 8 variables = true, -- Boolean: Italicizes variables 9 }, 10 overrides = { 11 OilNormal = { bg = "NONE" }, 12 OilFloat = { bg = "NONE" }, 13 FloatBorder = { bg = "NONE", fg = "#5e81ac" }, 14 }, -- A dictionary of group names, can be a function returning a dictionary or a table. 15 palette_overrides = {}, 16 }) 17 18 -- vim.cmd.colorscheme("vesper") 19 vim.opt.background = "dark" -- set this to dark or light 20 vim.cmd.colorscheme("vesper")