chore(nvim): add night own colorscheme

This commit is contained in:
Stefan Imhoff
2024-05-28 06:54:48 +02:00
parent d246fb5730
commit 4f395487d8
4 changed files with 46 additions and 34 deletions

View File

@@ -1,6 +1,7 @@
-- https://github.com/catppuccin/nvim
return {
"catppuccin/nvim",
lazy = true,
lazy = false,
priority = 1000,
name = "catppuccin",
}

View File

@@ -0,0 +1,10 @@
-- 🦉 🌌 Night Owl colorscheme implementation for Neovim with support for Treesitter and semantic tokens
-- https://github.com/oxfist/night-owl.nvim
return {
"oxfist/night-owl.nvim",
lazy = true,
config = function()
require("night-owl").setup()
vim.cmd.colorscheme("night-owl")
end,
}