dotfiles/.config/nvim/lua/plugins/theme.lua

26 lines
760 B
Lua
Raw Normal View History

2024-09-14 01:41:37 +00:00
return {
-- the colorscheme should be available when starting neovim
{
2024-09-15 00:38:22 +00:00
"folke/tokyonight.nvim",
-- "shaunsingh/nord.nvim",
2024-09-14 01:41:37 +00:00
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
2024-09-15 01:42:33 +00:00
opts = {
},
2024-09-14 01:41:37 +00:00
config = function()
2024-09-15 01:42:33 +00:00
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",
}
})
2024-09-14 01:41:37 +00:00
-- load the colorscheme here
2024-09-15 00:38:22 +00:00
vim.cmd([[colorscheme tokyonight]])
2024-09-14 01:41:37 +00:00
end,
2024-09-15 00:38:22 +00:00
},
2024-09-14 01:41:37 +00:00
}