Modified for transparent background with tokyonight theme

This commit is contained in:
Eduardo Cueto-Mendoza 2024-07-24 13:22:23 +01:00
parent 4a7f26873c
commit 917393ccb1
2 changed files with 11 additions and 4 deletions

11
after/plugin/color.lua Normal file
View File

@ -0,0 +1,11 @@
require("tokyonight").setup {
transparent = true,
styles = {
sidebars = "transparent",
floats = "transparent",
}
}
vim.cmd [[colorscheme tokyonight-night]]
vim.cmd [[hi Normal guibg=none]]

View File

@ -80,10 +80,6 @@ local plugins = {
"folke/tokyonight.nvim",
lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
-- load the colorscheme here
vim.cmd('colorscheme tokyonight-night')
end,
},
'ThePrimeagen/harpoon',