Move after/plugin to plugin

This commit is contained in:
Oliver Davies 2024-05-22 12:36:52 +01:00
parent 9b6f7310f2
commit f724019e43
24 changed files with 0 additions and 0 deletions

25
plugin/colorscheme.lua Normal file
View file

@ -0,0 +1,25 @@
local status_ok, catppuccin = pcall(require, "catppuccin")
if not status_ok then
return
end
catppuccin.setup {
flavour = "macchiato",
integrations = {
cmp = true,
gitsigns = true,
mini = {
enabled = true,
indentscope_color = "",
},
native_lsp = {
enabled = true,
},
telescope = true,
treesitter = true,
},
term_colors = true,
transparent_background = true,
}
vim.cmd.colorscheme "catppuccin"