Replaced feline with lualine. o7 feline, you will be missed

This commit is contained in:
2025-02-15 09:17:19 +11:00
parent 835f78fcfd
commit 31c306248e
6 changed files with 72 additions and 60 deletions

View File

@@ -0,0 +1,43 @@
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,
},
},
telescope = {
enabled = true,
},
treesitter = 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,
}