mirror of
https://github.com/LucasVbr/dotfiles.git
synced 2026-05-13 17:12:10 +00:00
56 lines
1.3 KiB
Lua
56 lines
1.3 KiB
Lua
return {
|
|
{
|
|
"catppuccin/nvim",
|
|
lazy = false,
|
|
name = "catppuccin",
|
|
-- you can do it like this with a config function
|
|
config = function()
|
|
require("catppuccin").setup({
|
|
flavour = "mocha",
|
|
})
|
|
vim.cmd.colorscheme("catppuccin")
|
|
end,
|
|
-- or just use opts table
|
|
opts = {
|
|
integrations = {
|
|
aerial = true,
|
|
alpha = true,
|
|
cmp = true,
|
|
dashboard = true,
|
|
flash = true,
|
|
fzf = true,
|
|
grug_far = true,
|
|
gitsigns = true,
|
|
headlines = true,
|
|
illuminate = true,
|
|
indent_blankline = { enabled = true },
|
|
leap = true,
|
|
lsp_trouble = true,
|
|
mason = true,
|
|
markdown = true,
|
|
mini = true,
|
|
native_lsp = {
|
|
enabled = true,
|
|
underlines = {
|
|
errors = { "undercurl" },
|
|
hints = { "undercurl" },
|
|
warnings = { "undercurl" },
|
|
information = { "undercurl" },
|
|
},
|
|
},
|
|
navic = { enabled = true, custom_bg = "lualine" },
|
|
neotest = true,
|
|
neotree = true,
|
|
noice = true,
|
|
notify = true,
|
|
semantic_tokens = true,
|
|
snacks = true,
|
|
telescope = true,
|
|
treesitter = true,
|
|
treesitter_context = true,
|
|
which_key = true,
|
|
},
|
|
},
|
|
},
|
|
}
|