dotfiles/modules/programs/nvim/plugins/lua/catppuccin-nvim.lua

20 lines
452 B
Lua
Raw Permalink Normal View History

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,
telekasten = true,
2023-05-28 18:23:25 +02:00
telescope = true,
lsp_trouble = true,
which_key = true,
},
})
vim.cmd.colorscheme("catppuccin-macchiato")