Updated colorscheme added diffview

This commit is contained in:
Graham McMillan 2024-06-17 17:11:17 +02:00
parent 6a3410e1c3
commit aa823e3429
3 changed files with 88 additions and 20 deletions

View file

@ -1,14 +1,49 @@
-- 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",
-- name = "catppuccin",
-- lazy = false,
-- priority = 1000,
--
-- config = function()
-- require("catppuccin").setup({
-- flavour = "mocha",
-- transparent_background = true,
-- })
-- vim.cmd.colorscheme 'catppuccin'
-- end,
-- }
-- }
return {
{
'catppuccin/nvim',
name = 'catppuccin',
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {
flavour = 'mocha',
},
config = function()
vim.cmd.colorscheme 'catppuccin'
end,
},
require("tokyonight").setup({
style = "moon",
})
vim.cmd[[colorscheme tokyonight]]
end
}
}