This repository has been archived on 2025-12-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nvim-old/lua/haelnorr/lazy/catppuccin.lua
2025-02-15 09:48:01 +11:00

46 lines
994 B
Lua

return {
"catppuccin/nvim",
config = function()
require("catppuccin").setup({
integrations = {
aerial = true,
cmp = true,
fidget = true,
gitsigns = true,
harpoon = true,
mason = true,
lsp_trouble = true,
native_lsp = {
enabled = true,
virtual_text = {
errors = { "italic" },
hints = { "italic" },
warnings = { "italic" },
information = { "italic" },
ok = { "italic" },
},
underlines = {
errors = { "underline" },
hints = { "underline" },
warnings = { "underline" },
information = { "underline" },
ok = { "underline" },
},
inlay_hints = {
background = true,
},
},
nvim_surround = true,
telescope = {
enabled = true,
},
treesitter = true,
which_key = true,
},
})
vim.cmd("colorscheme catppuccin-mocha")
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
end,
}