44 lines
850 B
Lua
44 lines
850 B
Lua
require("nvim-tundra").setup({
|
|
transparent_background = true,
|
|
editor = {
|
|
search = {},
|
|
substitute = {},
|
|
},
|
|
syntax = {
|
|
booleans = { bold = true, italic = true },
|
|
comments = { bold = true, italic = true },
|
|
conditionals = {},
|
|
constants = { bold = true },
|
|
functions = {},
|
|
keywords = {},
|
|
loops = {},
|
|
numbers = { bold = true },
|
|
operators = { bold = true },
|
|
punctuation = {},
|
|
strings = {},
|
|
types = { italic = true },
|
|
},
|
|
diagnostics = {
|
|
errors = {},
|
|
warnings = {},
|
|
information = {},
|
|
hints = {},
|
|
},
|
|
plugins = {
|
|
lsp = true,
|
|
treesitter = true,
|
|
cmp = true,
|
|
context = true,
|
|
dbui = true,
|
|
gitsigns = true,
|
|
telescope = true,
|
|
},
|
|
overwrite = {
|
|
colors = {},
|
|
highlights = {},
|
|
},
|
|
})
|
|
|
|
vim.opt.background = "dark"
|
|
vim.cmd("colorscheme tundra")
|