dotfiles/dot_config/nvim/after/plugin/theme.lua
2026-02-06 09:15:12 +01:00

19 lines
341 B
Lua

-- English comments only.
vim.opt.termguicolors = true
-- TokyoNight config
require("tokyonight").setup({
style = "night",
transparent = false,
terminal_colors = true,
styles = {
comments = { italic = true },
keywords = { italic = false },
functions = {},
variables = {},
},
})
vim.cmd.colorscheme("tokyonight")