init.lua with my background color

This commit is contained in:
scottyloveless 2024-09-03 11:14:36 -05:00
parent 63ee2ccd7b
commit c2ee373bca
No known key found for this signature in database
2 changed files with 42 additions and 0 deletions

View file

@ -835,6 +835,20 @@ require('lazy').setup({
-- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
require('tokyonight').setup {
-- use the night style
style = 'night',
-- 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.bg = '#011423'
end,
}
vim.cmd.colorscheme 'tokyonight-night'
-- You can configure highlights by doing something like: