feat(nvim): add catppuccin
This commit is contained in:
parent
ef3a8a1b6a
commit
e2aa4f73f7
1 changed files with 34 additions and 14 deletions
|
@ -1,5 +1,36 @@
|
||||||
return { -- Lua table
|
return { -- Lua table
|
||||||
|
-- catppuccin
|
||||||
|
{
|
||||||
|
"catppuccin/nvim",
|
||||||
|
name = "catppuccin",
|
||||||
|
priority = 1000,
|
||||||
|
version = "*",
|
||||||
|
lazy = false,
|
||||||
|
config = function()
|
||||||
|
require("catppuccin").setup({
|
||||||
|
flavour = "latte", -- latte, frappe, macchiato, mocha
|
||||||
|
color_overrides = {},
|
||||||
|
custom_highlights = {},
|
||||||
|
default_integrations = true,
|
||||||
|
integrations = {
|
||||||
|
cmp = true,
|
||||||
|
gitsigns = true,
|
||||||
|
nvimtree = true,
|
||||||
|
treesitter = true,
|
||||||
|
notify = false,
|
||||||
|
mini = {
|
||||||
|
enabled = true,
|
||||||
|
indentscope_color = "",
|
||||||
|
},
|
||||||
|
-- For more plugins integrations please scroll down (https://github.com/catppuccin/nvim#integrations)
|
||||||
|
},
|
||||||
|
})
|
||||||
|
vim.cmd.colorscheme = "catppuccin"
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
|
||||||
-- nvim.tree.lua
|
-- nvim.tree.lua
|
||||||
|
{
|
||||||
"nvim-tree/nvim-tree.lua", -- github repo
|
"nvim-tree/nvim-tree.lua", -- github repo
|
||||||
version = "*", -- latest version
|
version = "*", -- latest version
|
||||||
lazy = false, -- dont use lazy loading
|
lazy = false, -- dont use lazy loading
|
||||||
|
@ -12,16 +43,5 @@ return { -- Lua table
|
||||||
side = "right",
|
side = "right",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
-- catppuccin
|
|
||||||
{
|
|
||||||
"catppuccin/nvim",
|
|
||||||
name = "catppuccin",
|
|
||||||
priority = 1000,
|
|
||||||
version = "*",
|
|
||||||
lazy = false,
|
|
||||||
config = function()
|
|
||||||
vim.cmd.colorscheme = "catppuccin"
|
|
||||||
end,
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue