From 6cee197b2e7d085584085db59c01f340e6a8b7d7 Mon Sep 17 00:00:00 2001 From: coja Date: Wed, 8 Apr 2026 01:16:42 +0200 Subject: [PATCH] [Nvim] plugins cleanup --- .config/nvim/lua/plugins/init.lua | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.config/nvim/lua/plugins/init.lua b/.config/nvim/lua/plugins/init.lua index 6f76c21..8c0321b 100644 --- a/.config/nvim/lua/plugins/init.lua +++ b/.config/nvim/lua/plugins/init.lua @@ -31,7 +31,7 @@ return { no_auto_close = false, -- Never closes the window automatically. file = false, -- Write the payload to a temporary file to keep the command short. hidden = false, -- Hide the generation window (if true, will implicitly set `prompt.replace = true`), requires Neovim >= 0.10 - init = function(options) + init = function() pcall(io.popen, "ollama serve > /dev/null 2>&1 &") end, -- Function to initialize Ollama @@ -54,11 +54,6 @@ return { }, { "MeanderingProgrammer/render-markdown.nvim", - dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.nvim" }, -- if you use the mini.nvim suite - -- dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.icons' }, -- if you use standalone mini plugins - -- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons - ---@module 'render-markdown' - ---@type render.md.UserConfig opts = {}, },