Change theme and add plugins for transparent background

This commit is contained in:
Roee Kleiner 2023-05-21 12:04:20 +03:00
parent 41461afac4
commit d4ce512d9a
2 changed files with 23 additions and 5 deletions

View File

@ -121,12 +121,24 @@ require('lazy').setup({
-- vim.cmd.colorscheme 'no-clown-fiesta'
-- end,
-- },
-- {
-- 'aktersnurra/no-clown-fiesta.nvim',
-- priority = 10000,
-- config = function()
-- vim.cmd.colorscheme 'no-clown-fiesta'
-- end
-- },
{
'aktersnurra/no-clown-fiesta.nvim',
priority = 10000,
'projekt0n/github-nvim-theme',
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()
vim.cmd.colorscheme 'no-clown-fiesta'
end
require('github-theme').setup({
-- ...
})
vim.cmd.colorscheme('github_dark_tritanopia')
end,
},
{
@ -421,7 +433,7 @@ end
-- Add any additional override configuration in the following tables. They will be passed to
-- the `settings` field of the server config. You must look up that documentation yourself.
local servers = {
-- clangd = {},
clangd = {},
-- gopls = {},
-- pyright = {},
-- rust_analyzer = {},

View File

@ -0,0 +1,6 @@
return {
"xiyaowong/transparent.nvim",
config = function()
require('transparent').setup {}
end,
}