added some options to tokyonight
This commit is contained in:
parent
f6408d9d47
commit
11bdbf9942
1 changed files with 12 additions and 0 deletions
|
@ -5,7 +5,19 @@ return {
|
|||
-- "shaunsingh/nord.nvim",
|
||||
lazy = false, -- make sure we load this during the startup if its your main colorscheme
|
||||
priority = 1000, -- make sure to load this before all the other start plugins
|
||||
opts = {
|
||||
},
|
||||
config = function()
|
||||
require("tokyonight").setup({
|
||||
style = "storm", -- storm, moon, night, day
|
||||
light_style = "day",
|
||||
transparent = true,
|
||||
terminal_colors = true,
|
||||
styles = {
|
||||
sidebars = "transparent", -- dark, transparent, normal
|
||||
floats = "transparent",
|
||||
}
|
||||
})
|
||||
-- load the colorscheme here
|
||||
vim.cmd([[colorscheme tokyonight]])
|
||||
end,
|
||||
|
|
Loading…
Reference in a new issue