diff --git a/nvim/m-housh/lua/user/plugin/cmp.lua b/nvim/m-housh/lua/user/plugin/cmp.lua index b3de504..28e094a 100755 --- a/nvim/m-housh/lua/user/plugin/cmp.lua +++ b/nvim/m-housh/lua/user/plugin/cmp.lua @@ -113,10 +113,10 @@ return { [""] = cmp.mapping(function(fallback) if cmp.visible() then cmp.select_next_item() - elseif luasnip.expandable() then - luasnip.expand() - elseif luasnip.expand_or_jumpable() then - luasnip.expand_or_jump() +-- elseif luasnip.expandable() then +-- luasnip.expand() +-- elseif luasnip.expand_or_jumpable() then +-- luasnip.expand_or_jump() elseif has_words_before() then cmp.complete() else diff --git a/nvim/m-housh/lua/user/plugin/theme.lua b/nvim/m-housh/lua/user/plugin/theme.lua index bf839c1..9849e1f 100755 --- a/nvim/m-housh/lua/user/plugin/theme.lua +++ b/nvim/m-housh/lua/user/plugin/theme.lua @@ -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" + } + } + } +}