mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
chore(nvim): add night own colorscheme
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
-- https://github.com/catppuccin/nvim
|
||||
return {
|
||||
"catppuccin/nvim",
|
||||
lazy = true,
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
name = "catppuccin",
|
||||
}
|
||||
|
||||
10
nvim/lua/plugins/colorscheme-night-owl.lua
Normal file
10
nvim/lua/plugins/colorscheme-night-owl.lua
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user