43 lines
775 B
Lua
43 lines
775 B
Lua
return {
|
|
{
|
|
'catppuccin/nvim',
|
|
lazy = false,
|
|
name = 'catppuccin',
|
|
priority = 1000,
|
|
init = function()
|
|
vim.cmd.colorscheme 'catppuccin-mocha'
|
|
vim.cmd.hi 'Comment gui=none'
|
|
end,
|
|
opts = {
|
|
integrations = {
|
|
cmp = true,
|
|
gitsigns = true,
|
|
treesitter = true,
|
|
notify = true,
|
|
mini = {
|
|
enabled = true,
|
|
},
|
|
dashboard = true,
|
|
fidget = true,
|
|
mason = true,
|
|
telescope = {
|
|
enabled = true,
|
|
},
|
|
which_key = true,
|
|
},
|
|
},
|
|
},
|
|
{ 'tpope/vim-sleuth' },
|
|
{
|
|
'lukas-reineke/indent-blankline.nvim',
|
|
main = 'ibl',
|
|
opts = {
|
|
exclude = {
|
|
filetypes = {
|
|
'dashboard',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|