From 355997a38be15504cde87a1cb6d3c0d1aaf4cd44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20Wi=C4=85cek?= Date: Sat, 14 Feb 2026 12:14:15 +0100 Subject: [PATCH] Delete neocodeium and render-markdown --- README.md | 10 ---------- lua/plugins/neocodeium.lua | 24 ------------------------ lua/plugins/render-markdown.lua | 10 ---------- 3 files changed, 44 deletions(-) delete mode 100644 lua/plugins/neocodeium.lua delete mode 100644 lua/plugins/render-markdown.lua diff --git a/README.md b/README.md index 2fb123b..9ec8d85 100644 --- a/README.md +++ b/README.md @@ -40,15 +40,6 @@ Then, run `:Lazy` to install plugins. - `` (un)comments either current line, or visually selected block of code 🔎 - `m` activates leap motion for quick navigation within visible text -### 🤖 AI Assistance - -Codeium suggests snippets while typing, thanks to `neocodeium` plugin. -Use the following: - - `` to accept the suggestion - - `` to cycle through the suggestions - - `` to cycle backwards - - `` to clear suggestions - ### 📖 Status Line Using [lualine](https://github.com/nvim-lualine/lualine.nvim), I built a status line which also includes tabs, and shows some other goodies: @@ -68,7 +59,6 @@ The colors are hardcoded to work independently of the colorscheme, and stay cons - [gitsigns](https://github.com/lewis6991/gitsigns.nvim) - git integration - [leap](https://github.com/ggandor/leap.nvim) - motion plugin - [lualine](https://github.com/nvim-lualine/lualine.nvim) - statusline - - [neocodeium](https://github.com/monkoose/neocodeium) - AI code suggestions - [neogit](https://github.com/NeogitOrg/neogit) - git interface - [neoscroll](https://github.com/karb94/neoscroll.nvim) - smooth scrolling - [noice](https://github.com/folke/noice.nvim) - better UI messages diff --git a/lua/plugins/neocodeium.lua b/lua/plugins/neocodeium.lua deleted file mode 100644 index 54a7057..0000000 --- a/lua/plugins/neocodeium.lua +++ /dev/null @@ -1,24 +0,0 @@ -return { - "monkoose/neocodeium", - enabled = false, - event = "VeryLazy", - opts = { - silent = true, - filetypes = { - TelescopePrompt = false, - ["dap-repl"] = false, - }, - }, - config = function(_, opts) - local neocodeium = require("neocodeium") - neocodeium.setup(opts) - vim.keymap.set("i", "", neocodeium.accept) - vim.keymap.set("i", "", function() - neocodeium.cycle(1) - end) - vim.keymap.set("i", "", function() - neocodeium.cycle(-1) - end) - vim.keymap.set("i", "", neocodeium.clear) - end, -} diff --git a/lua/plugins/render-markdown.lua b/lua/plugins/render-markdown.lua deleted file mode 100644 index af6be45..0000000 --- a/lua/plugins/render-markdown.lua +++ /dev/null @@ -1,10 +0,0 @@ -return { - "MeanderingProgrammer/render-markdown.nvim", - dependencies = { - "nvim-treesitter/nvim-treesitter", - "nvim-tree/nvim-web-devicons", - }, - ---@module 'render-markdown' - ---@type render.md.UserConfig - opts = {}, -}