macboolk doesn't like lua :c
This commit is contained in:
parent
f2ba1e8549
commit
5b483a9db7
34 changed files with 279 additions and 776 deletions
43
lua/plugins/init.lua
Normal file
43
lua/plugins/init.lua
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
return {
|
||||
{
|
||||
'catppuccin/nvim',
|
||||
lazy = false,
|
||||
name = 'catppuccin',
|
||||
priority = 1000,
|
||||
init = function()
|
||||
vim.cmd.colorscheme 'catppuccin-mocha'
|
||||
-- You can configure highlights by doing something like:
|
||||
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',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue