From 44da8a06b60eb1f5fb06bb6854a63ef3d15ad0ab Mon Sep 17 00:00:00 2001 From: David Senoner Date: Sun, 15 Sep 2024 22:17:58 +0200 Subject: [PATCH] Remove catpuccin --- init.lua | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/init.lua b/init.lua index 22616b7..78ba383 100644 --- a/init.lua +++ b/init.lua @@ -21,10 +21,9 @@ end vim.opt.rtp:prepend(lazypath) local plugins = { - { "catppuccin/nvim", name = "catppuccin", priority = 1000 }, { "rebelot/kanagawa.nvim", name = "kanagawa", priority = 1000 }, { - "nvim-telescope/telescope.nvim", tag = "0.1.6", + "nvim-telescope/telescope.nvim", tag = "0.1.8", dependencies = { "nvim-lua/plenary.nvim" } }, { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate" }, @@ -41,11 +40,9 @@ local plugins = { }, { "hrsh7th/nvim-cmp" }, } -local opts = {} -require("lazy").setup(plugins, opts) +require("lazy").setup(plugins, {}) ---vim.cmd.colorscheme "catppuccin" vim.cmd.colorscheme "kanagawa" local builtin = require("telescope.builtin")