mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-11 20:43:00 +01:00
20 lines
857 B
Text
20 lines
857 B
Text
|
(local catppuccin (require :catppuccin))
|
||
|
|
||
|
(catppuccin.setup {;; Enable all relevant integrations
|
||
|
:integrations {:aerial true
|
||
|
:harpoon true
|
||
|
:gitsigns true
|
||
|
:neogit true
|
||
|
:noice true
|
||
|
:cmp true
|
||
|
:dap {:enabled true :enable_ui true}
|
||
|
:native_lsp {:enabled true}
|
||
|
:notify true
|
||
|
:nvimtree true
|
||
|
:treesitter true
|
||
|
:treesitter_context true
|
||
|
:ts_rainbow2 true
|
||
|
:telescope true}})
|
||
|
|
||
|
(vim.cmd.colorscheme :catppuccin)
|