|
|
|
@ -336,7 +336,12 @@ require('lazy').setup({
|
|
|
|
|
-- you do for a plugin at the top level, you can do for a dependency.
|
|
|
|
|
--
|
|
|
|
|
-- Use the `dependencies` key to specify the dependencies of a particular plugin
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
'supermaven-inc/supermaven-nvim',
|
|
|
|
|
config = function()
|
|
|
|
|
require('supermaven-nvim').setup {}
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
{ -- Fuzzy Finder (files, lsp, etc)
|
|
|
|
|
'nvim-telescope/telescope.nvim',
|
|
|
|
|
event = 'VimEnter',
|
|
|
|
@ -811,7 +816,7 @@ require('lazy').setup({
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{ -- You can easily change to a different colorscheme.
|
|
|
|
|
--[[ { -- You can easily change to a different colorscheme.
|
|
|
|
|
-- Change the name of the colorscheme plugin below, and then
|
|
|
|
|
-- change the command in the config to whatever the name of that colorscheme is.
|
|
|
|
|
--
|
|
|
|
@ -827,6 +832,19 @@ require('lazy').setup({
|
|
|
|
|
-- You can configure highlights by doing something like:
|
|
|
|
|
vim.cmd.hi 'Comment gui=none'
|
|
|
|
|
end,
|
|
|
|
|
}, ]]
|
|
|
|
|
{
|
|
|
|
|
'catppuccin/nvim',
|
|
|
|
|
name = 'catppuccin',
|
|
|
|
|
priority = 1000,
|
|
|
|
|
config = function()
|
|
|
|
|
require('catppuccin').setup {
|
|
|
|
|
transparent_background = true,
|
|
|
|
|
}
|
|
|
|
|
end,
|
|
|
|
|
init = function()
|
|
|
|
|
vim.cmd.colorscheme 'catppuccin'
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
-- Highlight todo, notes, etc in comments
|
|
|
|
|