colorscheme

This commit is contained in:
2026-03-09 19:52:00 +01:00
parent 19b7873e02
commit 2bd1d0bdf7
5 changed files with 61 additions and 0 deletions

24
lua/plugins/colors.lua Normal file
View File

@@ -0,0 +1,24 @@
local function enable_transparency()
vim.api.nvim_set_hl(0, "Normal", {bg = "none" })
end
return {
{
"EdenEast/nightfox.nvim",
config = function()
vim.cmd.colorscheme "Dawnfox"
-- enable_transparency()
end
},
{
"nvim-lualine/lualine.nvim",
dependencies = {
"nvim-tree/nvim-web-devicons",
},
opts = {
theme = 'tokyonight'
},
},
}