Compare commits
2 Commits
c5206e95ea
...
c25c1db32f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c25c1db32f | ||
|
|
05b1539183 |
@@ -13,7 +13,29 @@ return {
|
||||
},
|
||||
},
|
||||
{
|
||||
"L3MON4D3/LuaSnip",
|
||||
keys = {{"<tab>", "<C-.>"}}
|
||||
}
|
||||
"L3MON4D3/LuaSnip",
|
||||
-- stylua: ignore
|
||||
keys = function()
|
||||
return {
|
||||
{
|
||||
"<C-.>",
|
||||
function()
|
||||
return require("luasnip").jumpable(1) and "<Plug>luasnip-jump-next" or "<tab>"
|
||||
end,
|
||||
expr = true, silent = true, mode = "i",
|
||||
},
|
||||
{ "<C-.>", function() require("luasnip").jump(1) end, mode = "s" },
|
||||
{ "<C-,>", function() require("luasnip").jump(-1) end, mode = { "i", "s" } },
|
||||
}
|
||||
end,
|
||||
},
|
||||
{
|
||||
"echasnovski/mini.indentscope",
|
||||
opts = {
|
||||
draw = {
|
||||
delay = 0,
|
||||
animation = require("mini.indentscope").gen_animation.none(),
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user