This repository has been archived on 2024-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
linux/.config/nvim/lua/plugin/Tokyonight.lua

24 lines
636 B
Lua
Raw Normal View History

2023-08-08 16:24:15 +03:00
require("tokyonight").setup({
2024-02-06 15:25:18 +03:00
light_style = "night",
style = "night",
terminal_colors = true,
transparent = false,
styles = {
comments = { italic = true },
floats = "dark",
functions = {},
keywords = { italic = true },
sidebars = "dark",
variables = {},
},
day_brightness = 0.3,
dim_inactive = false,
hide_inactive_statusline = false,
lualine_bold = false,
on_colors = function(colors) end,
on_highlights = function(highlights, colors) end,
sidebars = { "qf", "help" },
2023-08-08 16:24:15 +03:00
})
2024-02-06 15:25:18 +03:00
-- vim.cmd[[colorscheme tokyonight]]