added night-owl and made it default theme.

This commit is contained in:
2024-08-25 15:04:14 +02:00
parent a1e41476b2
commit 45b5b3738a
2 changed files with 10 additions and 5 deletions
+5 -1
View File
@@ -6,6 +6,10 @@ require('tokyonight').setup({
}
})
require('night-owl').setup({
transparent_background = true
})
function ColorMyPencils(color)
color = color or 'tokyonight'
vim.cmd.colorscheme(color)
@@ -13,4 +17,4 @@ function ColorMyPencils(color)
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
end
ColorMyPencils()
ColorMyPencils('night-owl')
+4 -3
View File
@@ -35,9 +35,10 @@ return require('packer').startup(function(use)
use({
'folke/tokyonight.nvim',
as = 'tokyonight',
config = function()
vim.cmd('colorscheme tokyonight')
end
})
use({
"oxfist/night-owl.nvim",
as = 'night-owl',
})
-- Status bar
use {