.dotfiles/configs/nvim/lua/core/theme-tundra.lua

44 lines
785 B
Lua
Raw Normal View History

2022-10-06 21:14:32 +02:00
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")