49 lines
1.1 KiB
Lua
49 lines
1.1 KiB
Lua
local config = {
|
|
flavour = "macchiato",
|
|
term_colors = true,
|
|
transparent_background = true,
|
|
integrations = {
|
|
alpha = true,
|
|
gitsigns = true,
|
|
hop = true,
|
|
indent_blankline = {
|
|
enabled = true,
|
|
colored_indent_levels = true,
|
|
},
|
|
cmp = true,
|
|
markdown = true,
|
|
mini = true,
|
|
native_lsp = {
|
|
enabled = true,
|
|
},
|
|
neogit = true,
|
|
neotree = true,
|
|
noice = true,
|
|
notify = true,
|
|
navic = {
|
|
enabled = true,
|
|
custom_bg = "NONE",
|
|
},
|
|
treesitter = true,
|
|
treesitter_context = true,
|
|
telescope = true,
|
|
lsp_trouble = true,
|
|
which_key = true,
|
|
},
|
|
}
|
|
|
|
return {
|
|
"catppuccin/nvim",
|
|
name = "catppuccin",
|
|
lazy = false,
|
|
priority = 1000,
|
|
init = function()
|
|
vim.opt.termguicolors = true
|
|
require "ui.fillchars"
|
|
end,
|
|
config = function()
|
|
require("catppuccin").setup(config)
|
|
vim.cmd.colorscheme "catppuccin"
|
|
end,
|
|
}
|