Remove some commented code

This commit is contained in:
Graham McMillan 2024-07-11 15:22:38 +02:00
parent aa823e3429
commit c1dbb3f7b3
1 changed files with 7 additions and 26 deletions

View File

@ -1,22 +1,3 @@
-- return {
-- {
-- "catppuccin/nvim",
-- name = "catppuccin",
-- lazy = false,
-- priority = 1000,
-- -- opts = {
-- -- flavour = 'mocha',
-- -- },
-- config = function()
-- require("catppuccin").setup({
-- flavour = "mocha",
-- transparent_background = false,
-- })
-- vim.cmd.colorscheme 'catppuccin'
-- end,
-- },
-- }
-- return {
-- {
-- "catppuccin/nvim",
@ -36,14 +17,14 @@
return {
{
"folke/tokyonight.nvim",
'folke/tokyonight.nvim',
lazy = false,
priority = 1000,
config = function()
require("tokyonight").setup({
style = "moon",
})
vim.cmd[[colorscheme tokyonight]]
end
}
require('tokyonight').setup {
style = 'moon',
}
vim.cmd [[colorscheme tokyonight]]
end,
},
}