From bc90e8174fd1760d87b5cd68d8fabb9669ab5fb9 Mon Sep 17 00:00:00 2001 From: Abouzar Parvan Date: Fri, 15 Apr 2022 05:34:24 +0430 Subject: fix(cmp): bring back default keybindings (#2470) --- lua/lvim/core/cmp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lua/lvim/core') diff --git a/lua/lvim/core/cmp.lua b/lua/lvim/core/cmp.lua index 8fb18c5f..4eff9883 100644 --- a/lua/lvim/core/cmp.lua +++ b/lua/lvim/core/cmp.lua @@ -248,7 +248,7 @@ M.config = function() { name = "treesitter" }, { name = "crates" }, }, - mapping = { + mapping = cmp.mapping.preset.insert { [""] = cmp.mapping.select_prev_item(), [""] = cmp.mapping.select_next_item(), [""] = cmp.mapping.scroll_docs(-4), -- cgit v1.2.3 From 10c7753d8e6f572974f9b9e0d0d8631cd13e60ea Mon Sep 17 00:00:00 2001 From: Carlos H <33254540+chsjr1996@users.noreply.github.com> Date: Thu, 14 Apr 2022 22:10:03 -0300 Subject: fix(lualine): color theme gaps in some components (#2465) --- lua/lvim/core/lualine/components.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'lua/lvim/core') diff --git a/lua/lvim/core/lualine/components.lua b/lua/lvim/core/lualine/components.lua index b97f946e..b89bbd36 100644 --- a/lua/lvim/core/lualine/components.lua +++ b/lua/lvim/core/lualine/components.lua @@ -41,7 +41,6 @@ return { modified = { fg = colors.yellow }, removed = { fg = colors.red }, }, - color = {}, cond = nil, }, python_env = { @@ -67,7 +66,6 @@ return { "diagnostics", sources = { "nvim_diagnostic" }, symbols = { error = " ", warn = " ", info = " ", hint = " " }, - color = {}, cond = conditions.hide_in_width, }, treesitter = { @@ -139,7 +137,7 @@ return { color = {}, cond = conditions.hide_in_width, }, - filetype = { "filetype", cond = conditions.hide_in_width, color = {} }, + filetype = { "filetype", cond = conditions.hide_in_width }, scrollbar = { function() local current_line = vim.fn.line "." -- cgit v1.2.3