From 9d7446e0f9288a7001594cc45bf843f4b79d9e0d Mon Sep 17 00:00:00 2001 From: oscar pinochet Date: Wed, 25 Sep 2024 18:53:49 -0300 Subject: [PATCH] add supermaven --- init.lua | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 87917482..63eb1f62 100644 --- a/init.lua +++ b/init.lua @@ -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