From 2bcff1662b14f55ed96033bbbb6e365baf691c29 Mon Sep 17 00:00:00 2001 From: Ryan Yogan Date: Thu, 17 Jul 2025 18:50:58 -0500 Subject: [PATCH] removes personal neovim configs --- themes/catppuccin-latte/neovim.lua | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/themes/catppuccin-latte/neovim.lua b/themes/catppuccin-latte/neovim.lua index 997b3ed..07a53cf 100644 --- a/themes/catppuccin-latte/neovim.lua +++ b/themes/catppuccin-latte/neovim.lua @@ -6,30 +6,6 @@ return { config = function() require("catppuccin").setup({ flavour = "latte", -- other options: "mocha", "frappe", "macchiato" - integrations = { - cmp = true, - gitsigns = true, - harpoon = true, - illuminate = true, - lsp_trouble = true, - markdown = true, - mason = true, - native_lsp = { - enabled = true, - underlines = { - errors = { "undercurl" }, - hints = { "undercurl" }, - warnings = { "undercurl" }, - information = { "undercurl" }, - }, - }, - navic = { enabled = true }, - neotree = true, - notify = true, - telescope = true, - treesitter = true, - which_key = true, - }, }) vim.cmd.colorscheme("catppuccin-latte") end,