21 lines
340 B
Lua
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,
|
|
})
|