Files
neovim/lua/theme.lua
2026-03-19 16:14:24 -05:00

21 lines
340 B
Lua

-- plugin({
-- "catppuccin/nvim",
-- name = "catppuccin",
-- priority = 1000,
-- init = function()
-- vim.cmd.colorscheme("catppuccin-mocha")
-- end,
-- })
plugin({
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {
transparent = true,
},
init = function()
vim.cmd([[colorscheme tokyonight-night]])
end,
})