We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 686b930 + 0ecf316 commit 91d28dcCopy full SHA for 91d28dc
lua/plugins/colorscheme.lua
@@ -9,6 +9,7 @@ return {
9
ui_contrast = "low",
10
dim_inactive_windows = false,
11
better_performance = true,
12
+ disable_italic_comments = true,
13
}
14
everforest.load()
15
end
lua/plugins/completions.lua
@@ -33,7 +33,8 @@ return {
33
['<M-c>'] = cmp.mapping.abort(),
34
['<CR>'] = cmp.mapping.confirm({ select = true }),
35
["<Tab>"] = cmp.mapping(function(fallback)
36
- if luasnip.jumpable(1) then luasnip.jump(1)
+ if cmp.visible() then cmp.select_next_item()
37
+ elseif luasnip.locally_jumpable(1) then luasnip.jump(1)
38
else fallback()
39
40
end, { "i", "s" }),
0 commit comments