dotfiles/nvim/lua/enrique/plugins/cholorscheme.lua

54 lines
2.0 KiB
Lua

return {
{
"binhtran432k/dracula.nvim",
lazy = false,
priority = 1000,
opts = {},
config = function()
require("dracula").setup({
style = "default", -- The theme comes in three styles, `default`, a darker variant `soft` and `day`
transparent = true, -- Enable this to disable setting the background color
terminal_colors = true, -- Configure the colors used when opening a `:terminal` in Neovim
styles = {
variables = {},
-- Background styles. Can be "dark", "transparent" or "normal"
sidebars = "transparent", -- style for sidebars, see below
floats = "normal", -- style for floating windows
},
dim_inactive = false, -- dims inactive windows
lualine_bold = false, -- When `true`, section headers in the lualine theme will be bold
})
-- vim.cmd[[colorscheme dracula]]
end
},
{
-- Tokio Night
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {},
config = function()
require ("tokyonight").setup({
syle = "storm", -- storm, moon, night, day
light_style = "day",
transparent = true,
terminal_colors = true,
-- Background styles. Can be "dark", "transparent" or "normal"
styles = {
sidebars = "transparent",
floats = "normal",
},
day_brightness = 0.9, -- Adjusts the brightness of the **Day** style
dim_inactive = false, -- dims inactive windows
lualine_bold = true, -- Lualine theme will be bold
})
vim.cmd[[
colorscheme tokyonight
hi CocUnusedHighlight cterm=underline gui=underline
]]
end
}
}