quick fix

pull/128/head
flin16 2025-06-13 15:24:02 -05:00
parent 54b2f55068
commit d14ff952c1
1 changed files with 27 additions and 7 deletions

View File

@ -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,
},
},
}