fix tooltip color
This commit is contained in:
parent
28451c7f31
commit
2c42a4d509
2 changed files with 4 additions and 3 deletions
|
|
@ -45,7 +45,7 @@ vim.cmd.colorscheme("gruvbox")
|
|||
-- [[ Set up keymaps ]] See `:h vim.keymap.set()`, `:h mapping`, `:h keycodes`
|
||||
|
||||
-- Use <Esc> to exit terminal mode
|
||||
vim.keymap.set("t", "<Leader><Esc>", "<C-\\><C-n>")
|
||||
vim.keymap.set("t", "<A-Esc>", "<C-\\><C-n>")
|
||||
|
||||
-- Map <A-j>, <A-k>, <A-h>, <A-l> to navigate between windows in any modes
|
||||
vim.keymap.set({ "t", "i" }, "<A-h>", "<C-\\><C-n><C-w>h")
|
||||
|
|
@ -235,7 +235,8 @@ local imap_expr = function(lhs, rhs)
|
|||
end
|
||||
imap_expr('<Tab>', [[pumvisible() ? "\<C-n>" : "\<Tab>"]])
|
||||
imap_expr('<S-Tab>', [[pumvisible() ? "\<C-p>" : "\<S-Tab>"]])
|
||||
-- Snipped integration for mini.completion
|
||||
|
||||
-- Snippet integration for mini.completion
|
||||
require("mini.snippets").setup()
|
||||
|
||||
-- Icons for statusline and completion
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue