neovim - all packages
This commit is contained in:
49
home/programs/neovim/lua/plugins/catppuccin-nvim.lua
Normal file
49
home/programs/neovim/lua/plugins/catppuccin-nvim.lua
Normal file
@@ -0,0 +1,49 @@
|
||||
return {
|
||||
{
|
||||
"catppuccin/nvim",
|
||||
lazy = false,
|
||||
name = "catppuccin",
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd.colorscheme("catppuccin")
|
||||
end,
|
||||
opts = {
|
||||
flavor = "mocha",
|
||||
integrations = {
|
||||
nvimtree = true,
|
||||
dashboard = true,
|
||||
which_key = true,
|
||||
cmp = true,
|
||||
markdown = true,
|
||||
leap = true,
|
||||
telescope = {
|
||||
enabled = true,
|
||||
},
|
||||
treesitter = true,
|
||||
rainbow_delimiters = true,
|
||||
dropbar = {
|
||||
enabled = false,
|
||||
color_mode = false, -- enable color for kind's texts, not just kind's icons
|
||||
},
|
||||
native_lsp = {
|
||||
enabled = true,
|
||||
virtual_text = {
|
||||
errors = { "italic" },
|
||||
hints = { "italic" },
|
||||
warnings = { "italic" },
|
||||
information = { "italic" },
|
||||
},
|
||||
underlines = {
|
||||
errors = { "underline" },
|
||||
hints = { "underline" },
|
||||
warnings = { "underline" },
|
||||
information = { "underline" },
|
||||
},
|
||||
inlay_hints = {
|
||||
background = true,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user