mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-04 04:35:29 +00:00
11 lines
305 B
Lua
11 lines
305 B
Lua
-- 🦉 🌌 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,
|
|
}
|