diff --git a/lua/plugins/example.lua b/lua/plugins/example.lua index c2dceaa..0c7c4eb 100644 --- a/lua/plugins/example.lua +++ b/lua/plugins/example.lua @@ -208,6 +208,26 @@ return { { "HakonHarnes/img-clip.nvim" }, -- TODO: test this { "petertriho/nvim-scrollbar" }, + { + "rachartier/tiny-code-action.nvim", + dependencies = { + { "nvim-lua/plenary.nvim" }, + + -- optional picker via telescope + { "nvim-telescope/telescope.nvim" }, + -- optional picker via fzf-lua + { "ibhagwan/fzf-lua" }, + -- .. or via snacks + { + "folke/snacks.nvim", + opts = { + terminal = {}, + } + } + }, + event = "LspAttach", + opts = {}, + }, { "rachartier/tiny-code-action.nvim", dependencies = { @@ -286,13 +306,13 @@ return { { "saghen/blink.cmp", opts = { - enabled = function() - --Disable when the filetype is tex - return vim.bo.filetype ~= "tex" - -- Enable when there is no file ~/.config/nvim-options/blink-disabled - -- local path = vim.fn.stdpath("config") .. "/blink-disabled" - -- return not vim.loop.fs_stat(path) - end, + -- enabled = function() + -- --Disable when the filetype is tex + -- return vim.bo.filetype ~= "tex" + -- -- Enable when there is no file ~/.config/nvim-options/blink-disabled + -- -- local path = vim.fn.stdpath("config") .. "/blink-disabled" + -- -- return not vim.loop.fs_stat(path) + -- end, }, }, }