mirror of
https://github.com/iofq/nvim.nix.git
synced 2026-01-23 08:55:16 -06:00
fix: copilot suggestions warning
This commit is contained in:
parent
e7eb63b09b
commit
55bade6fb7
2 changed files with 6 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ return {
|
||||||
},
|
},
|
||||||
opts = {
|
opts = {
|
||||||
provider = "copilot",
|
provider = "copilot",
|
||||||
auto_suggestions_provider = "copilot",
|
-- auto_suggestions_provider = "copilot",
|
||||||
behavior = {
|
behavior = {
|
||||||
auto_suggestions = false, -- TODO
|
auto_suggestions = false, -- TODO
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -61,6 +61,11 @@ return {
|
||||||
function() Snacks.picker.smart() end,
|
function() Snacks.picker.smart() end,
|
||||||
{ noremap = true, silent = true, desc = 'Fuzzy find files' }
|
{ noremap = true, silent = true, desc = 'Fuzzy find files' }
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'<leader>fg',
|
||||||
|
function() Snacks.picker.files() end,
|
||||||
|
{ noremap = true, silent = true, desc = 'Fuzzy find files' }
|
||||||
|
},
|
||||||
{
|
{
|
||||||
'<leader>fa',
|
'<leader>fa',
|
||||||
function() Snacks.picker.grep() end,
|
function() Snacks.picker.grep() end,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue