From 45b5b3738ac9120ef4fc1e7c1267bae32ce38a6c Mon Sep 17 00:00:00 2001 From: anth64 Date: Sun, 25 Aug 2024 15:04:14 +0200 Subject: [PATCH] added night-owl and made it default theme. --- after/plugin/colors.lua | 6 +++++- lua/anth64/packer.lua | 9 +++++---- 2 files changed, 10 insertions(+), 5 deletions(-) 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',