Skip to content

Commit 91d28dc

Browse files
authored
fixes: has been done
2 parents 686b930 + 0ecf316 commit 91d28dc

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lua/plugins/colorscheme.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ return {
99
ui_contrast = "low",
1010
dim_inactive_windows = false,
1111
better_performance = true,
12+
disable_italic_comments = true,
1213
}
1314
everforest.load()
1415
end

lua/plugins/completions.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ return {
3333
['<M-c>'] = cmp.mapping.abort(),
3434
['<CR>'] = cmp.mapping.confirm({ select = true }),
3535
["<Tab>"] = cmp.mapping(function(fallback)
36-
if luasnip.jumpable(1) then luasnip.jump(1)
36+
if cmp.visible() then cmp.select_next_item()
37+
elseif luasnip.locally_jumpable(1) then luasnip.jump(1)
3738
else fallback()
3839
end
3940
end, { "i", "s" }),

0 commit comments

Comments
 (0)