2023-03-04 13:22:48 +01:00
|
|
|
require("catppuccin").setup({
|
|
|
|
compile_path = vim.fn.stdpath("cache") .. "/catppuccin", -- fix issue of writing to nix store
|
|
|
|
integrations = {
|
2023-05-28 18:23:25 +02:00
|
|
|
gitsigns = true,
|
|
|
|
lsp_saga = true,
|
|
|
|
mini = true,
|
|
|
|
noice = true,
|
|
|
|
cmp = true,
|
|
|
|
native_lsp = {
|
|
|
|
enabled = true,
|
|
|
|
},
|
|
|
|
treesitter = true,
|
2023-07-15 18:17:59 +02:00
|
|
|
telekasten = true,
|
2023-05-28 18:23:25 +02:00
|
|
|
telescope = true,
|
|
|
|
lsp_trouble = true,
|
2023-03-04 13:22:48 +01:00
|
|
|
which_key = true,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
vim.cmd.colorscheme("catppuccin-macchiato")
|