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) function ColorMyPencils(color)
color = color or 'tokyonight' color = color or 'tokyonight'
vim.cmd.colorscheme(color) vim.cmd.colorscheme(color)
@@ -13,4 +17,4 @@ function ColorMyPencils(color)
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" }) vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
end end
ColorMyPencils() ColorMyPencils('night-owl')
+4 -3
View File
@@ -35,9 +35,10 @@ return require('packer').startup(function(use)
use({ use({
'folke/tokyonight.nvim', 'folke/tokyonight.nvim',
as = 'tokyonight', as = 'tokyonight',
config = function() })
vim.cmd('colorscheme tokyonight') use({
end "oxfist/night-owl.nvim",
as = 'night-owl',
}) })
-- Status bar -- Status bar
use { use {