2023-05-11 10:44:22 +01:00
|
|
|
local config = {
|
|
|
|
flavour = "macchiato",
|
|
|
|
term_colors = true,
|
2023-05-11 21:46:07 +01:00
|
|
|
transparent_background = false,
|
2023-05-11 10:44:22 +01:00
|
|
|
integrations = {
|
2023-05-11 18:03:39 +01:00
|
|
|
alpha = true,
|
2023-05-11 10:44:22 +01:00
|
|
|
gitsigns = true,
|
|
|
|
hop = true,
|
|
|
|
indent_blankline = {
|
|
|
|
enabled = true,
|
|
|
|
colored_indent_levels = true,
|
|
|
|
},
|
|
|
|
cmp = true,
|
2023-05-11 18:03:39 +01:00
|
|
|
markdown = true,
|
|
|
|
mini = true,
|
2023-05-11 10:44:22 +01:00
|
|
|
native_lsp = {
|
|
|
|
enabled = true,
|
|
|
|
},
|
|
|
|
neogit = true,
|
2023-05-11 18:03:39 +01:00
|
|
|
neotree = true,
|
|
|
|
noice = true,
|
2023-05-11 10:44:22 +01:00
|
|
|
notify = true,
|
|
|
|
navic = {
|
2023-05-11 18:03:39 +01:00
|
|
|
enabled = true,
|
2023-05-11 10:44:22 +01:00
|
|
|
custom_bg = "NONE",
|
|
|
|
},
|
|
|
|
treesitter = true,
|
|
|
|
treesitter_context = true,
|
|
|
|
telescope = true,
|
|
|
|
lsp_trouble = true,
|
|
|
|
which_key = true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2023-02-20 11:09:53 +00:00
|
|
|
return {
|
|
|
|
"catppuccin/nvim",
|
|
|
|
name = "catppuccin",
|
|
|
|
lazy = false,
|
|
|
|
priority = 1000,
|
2023-02-20 17:15:44 +00:00
|
|
|
init = function()
|
2023-02-20 12:05:08 +00:00
|
|
|
vim.opt.termguicolors = true
|
2023-02-20 11:25:00 +00:00
|
|
|
require "ui.fillchars"
|
2023-02-20 17:15:44 +00:00
|
|
|
end,
|
|
|
|
config = function()
|
2023-05-11 10:44:22 +01:00
|
|
|
require("catppuccin").setup(config)
|
2023-02-20 16:43:33 +00:00
|
|
|
vim.cmd.colorscheme "catppuccin"
|
2023-02-20 11:09:53 +00:00
|
|
|
end,
|
|
|
|
}
|