mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 04:21:03 +00:00
32 lines
610 B
Lua
32 lines
610 B
Lua
return {
|
|
{
|
|
"catppuccin/nvim",
|
|
opts = {
|
|
flavour = "macchiato",
|
|
dim_inactive = {
|
|
enabled = true,
|
|
percentage = 2,
|
|
},
|
|
-- integrations = {
|
|
-- native_lsp = {
|
|
-- enabled = false,
|
|
-- },
|
|
-- },
|
|
}
|
|
},
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "catppuccin",
|
|
}
|
|
},
|
|
-- {
|
|
-- "akinsho/bufferline.nvim",
|
|
-- init = function()
|
|
-- local bufline = require("catppuccin.groups.integrations.bufferline")
|
|
-- function bufline.get()
|
|
-- return bufline.get_theme()
|
|
-- end
|
|
-- end,
|
|
-- }
|
|
}
|