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

44 lines
850 B
Lua
Raw Normal View History

2022-09-26 00:49:11 +02:00
require("nvim-tundra").setup({
2022-09-02 16:15:54 +02:00
transparent_background = true,
2022-09-26 00:49:11 +02:00
editor = {
search = {},
substitute = {},
2022-09-02 16:15:54 +02:00
},
2022-09-26 00:49:11 +02:00
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 },
2022-09-02 16:15:54 +02:00
},
2022-09-26 00:49:11 +02:00
diagnostics = {
errors = {},
warnings = {},
information = {},
hints = {},
},
plugins = {
lsp = true,
2022-09-02 16:15:54 +02:00
treesitter = true,
cmp = true,
2022-09-26 00:49:11 +02:00
context = true,
dbui = true,
gitsigns = true,
telescope = true,
2022-09-02 16:15:54 +02:00
},
2022-09-26 00:49:11 +02:00
overwrite = {
colors = {},
highlights = {},
2022-09-02 16:15:54 +02:00
},
2022-04-25 16:23:14 +02:00
})
2022-09-02 16:15:54 +02:00
2022-09-26 00:49:11 +02:00
vim.opt.background = "dark"
vim.cmd("colorscheme tundra")