mirror of https://github.com/LazyVim/starter
quick fix
parent
54b2f55068
commit
d14ff952c1
|
@ -208,6 +208,26 @@ return {
|
||||||
{ "HakonHarnes/img-clip.nvim" },
|
{ "HakonHarnes/img-clip.nvim" },
|
||||||
-- TODO: test this
|
-- TODO: test this
|
||||||
{ "petertriho/nvim-scrollbar" },
|
{ "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",
|
"rachartier/tiny-code-action.nvim",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
|
@ -286,13 +306,13 @@ return {
|
||||||
{
|
{
|
||||||
"saghen/blink.cmp",
|
"saghen/blink.cmp",
|
||||||
opts = {
|
opts = {
|
||||||
enabled = function()
|
-- enabled = function()
|
||||||
--Disable when the filetype is tex
|
-- --Disable when the filetype is tex
|
||||||
return vim.bo.filetype ~= "tex"
|
-- return vim.bo.filetype ~= "tex"
|
||||||
-- Enable when there is no file ~/.config/nvim-options/blink-disabled
|
-- -- Enable when there is no file ~/.config/nvim-options/blink-disabled
|
||||||
-- local path = vim.fn.stdpath("config") .. "/blink-disabled"
|
-- -- local path = vim.fn.stdpath("config") .. "/blink-disabled"
|
||||||
-- return not vim.loop.fs_stat(path)
|
-- -- return not vim.loop.fs_stat(path)
|
||||||
end,
|
-- end,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue