diff --git a/after/plugin/colors.lua b/after/plugin/colors.lua index 98c897d..597d20e 100644 --- a/after/plugin/colors.lua +++ b/after/plugin/colors.lua @@ -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') diff --git a/lua/anth64/packer.lua b/lua/anth64/packer.lua index 1ae2c91..5984c95 100644 --- a/lua/anth64/packer.lua +++ b/lua/anth64/packer.lua @@ -34,11 +34,12 @@ return require('packer').startup(function(use) -- Color schemes. use({ 'folke/tokyonight.nvim', - as = 'tokyonight', - config = function() - vim.cmd('colorscheme tokyonight') - end + as = 'tokyonight', }) + use({ + "oxfist/night-owl.nvim", + as = 'night-owl', + }) -- Status bar use { 'nvim-lualine/lualine.nvim',