removes lua-snip

This commit is contained in:
2024-03-20 19:19:05 -04:00
parent 2434fb52e2
commit 0f8e56394d
2 changed files with 17 additions and 5 deletions

View File

@@ -113,10 +113,10 @@ return {
["<Tab>"] = cmp.mapping(function(fallback) ["<Tab>"] = cmp.mapping(function(fallback)
if cmp.visible() then if cmp.visible() then
cmp.select_next_item() cmp.select_next_item()
elseif luasnip.expandable() then -- elseif luasnip.expandable() then
luasnip.expand() -- luasnip.expand()
elseif luasnip.expand_or_jumpable() then -- elseif luasnip.expand_or_jumpable() then
luasnip.expand_or_jump() -- luasnip.expand_or_jump()
elseif has_words_before() then elseif has_words_before() then
cmp.complete() cmp.complete()
else else

View File

@@ -22,5 +22,17 @@
-- } -- }
-- }, -- },
-- } -- }
return { "catppuccin/nvim", name = "catppuccin", priority = 1000 } return {
"catppuccin/nvim",
name = "catppuccin",
priority = 1000,
opts = {
color_overrides = {
all = {
text = "#ffffff",
strings = "#ffffff"
}
}
}
}