22 lines
484 B
Lua
Executable file
22 lines
484 B
Lua
Executable file
vim.o.background = "dark"
|
|
|
|
require("vscode.colors").get_colors()
|
|
require("vscode").setup({
|
|
transparent = true
|
|
})
|
|
|
|
require("no-clown-fiesta").setup({
|
|
transparent = true, -- Enable this to disable the bg color
|
|
styles = {
|
|
-- You can set any of the style values specified for `:h nvim_set_hl`
|
|
comments = {},
|
|
keywords = {},
|
|
functions = {},
|
|
variables = {},
|
|
type = { bold = true },
|
|
lsp = { underline = true }
|
|
},
|
|
})
|
|
|
|
vim.cmd[[colorscheme no-clown-fiesta]]
|
|
|