mirror of https://github.com/LazyVim/starter
quick fix
parent
54b2f55068
commit
d14ff952c1
|
@ -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,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue