192 current 2025-01-10 23:05:05 25.05.20241217.d3c42f1 6.6.66 *
This commit is contained in:
@@ -1,11 +1,26 @@
|
|||||||
-- Tokyonight configuration in Lua
|
-- Tokyonight configuration in Lua
|
||||||
|
|
||||||
vim.g.tokyonight_style = "day"
|
require("tokyonight").setup({
|
||||||
vim.g.tokyonight_italic_functions = true
|
-- use the night style
|
||||||
vim.g.tokyonight_sidebars = { "qf", "vista_kind", "terminal", "packer" }
|
style = "day",
|
||||||
|
-- disable italic for functions
|
||||||
|
styles = {
|
||||||
|
functions = {}
|
||||||
|
},
|
||||||
|
-- Change the "hint" color to the "orange" color, and make the "error" color bright red
|
||||||
|
on_colors = function(colors)
|
||||||
|
colors.hint = colors.orange
|
||||||
|
colors.error = "#ff0000"
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
||||||
vim.g.tokyonight_colors = {
|
|
||||||
bg_dark = "#ff0000",
|
-- vim.g.tokyonight_style = "day"
|
||||||
bg = "#0d0d0d",
|
-- vim.g.tokyonight_italic_functions = true
|
||||||
fg = "#e3e1e1",
|
-- vim.g.tokyonight_sidebars = { "qf", "vista_kind", "terminal", "packer" }
|
||||||
}
|
|
||||||
|
-- vim.g.tokyonight_colors = {
|
||||||
|
-- bg_dark = "#ff0000",
|
||||||
|
-- bg = "#0d0d0d",
|
||||||
|
-- fg = "#e3e1e1",
|
||||||
|
-- }
|
||||||
|
|||||||
Reference in New Issue
Block a user