Replaced feline with lualine. o7 feline, you will be missed
This commit is contained in:
43
lua/haelnorr/lazy/catppuccin.lua
Normal file
43
lua/haelnorr/lazy/catppuccin.lua
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user