colorscheme
This commit is contained in:
24
lua/plugins/colors.lua
Normal file
24
lua/plugins/colors.lua
Normal 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'
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user