19 lines
341 B
Lua
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")
|