Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
neovim-config/lua/plugins/configs/catppuccin.lua

46 lines
910 B
Lua
Raw Normal View History

2022-09-05 19:26:20 +00:00
local present, catppuccin = pcall(require, "catppuccin")
if present then
vim.g.catppuccin_flavour = "macchiato"
catppuccin.setup({
term_colors = true,
compile = {
enabled = true,
path = vim.fn.stdpath("cache") .. "/catppuccin",
},
integration = {
neotree = {
enabled = true,
show_root = true,
transparent_panel = false,
},
navic = {
enabled = true,
custom_bg = "NONE",
},
lsp_saga = true,
treesitter_context = true,
ts_rainbow = true,
2022-10-13 01:48:48 +00:00
native_lsp = {
enabled = true,
virtual_text = {
errors = { "italic" },
hints = { "italic" },
warnings = { "italic" },
information = { "italic" },
},
underlines = {
errors = { "underline" },
hints = { "underline" },
warnings = { "underline" },
information = { "underline" },
},
},
which_key = true,
2022-09-05 19:26:20 +00:00
},
})
vim.cmd("colorscheme catppuccin")
end