nvim: fix fzf
This commit is contained in:
parent
e51f883626
commit
a29326adf1
1 changed files with 3 additions and 1 deletions
|
@ -115,7 +115,8 @@
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
'';
|
'';
|
||||||
"<Tab>" = ''
|
# plain tab conflicts with i try to indent
|
||||||
|
"<C-Tab>" = ''
|
||||||
cmp.mapping(function(fallback)
|
cmp.mapping(function(fallback)
|
||||||
if require("luasnip").jumpable(1) then
|
if require("luasnip").jumpable(1) then
|
||||||
require("luasnip").jump(1)
|
require("luasnip").jump(1)
|
||||||
|
@ -174,6 +175,7 @@
|
||||||
};
|
};
|
||||||
plugins.fzf-lua = {
|
plugins.fzf-lua = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
profile = "fzf-native";
|
||||||
keymaps = {
|
keymaps = {
|
||||||
"<leader>ff" = "files";
|
"<leader>ff" = "files";
|
||||||
"<leader>fg" = "live_grep";
|
"<leader>fg" = "live_grep";
|
||||||
|
|
Loading…
Add table
Reference in a new issue