fix tooltip color

This commit is contained in:
Never Gude 2026-02-12 14:49:48 +01:00
parent 28451c7f31
commit 2c42a4d509
2 changed files with 4 additions and 3 deletions

View file

@ -45,7 +45,7 @@ vim.cmd.colorscheme("gruvbox")
-- [[ Set up keymaps ]] See `:h vim.keymap.set()`, `:h mapping`, `:h keycodes` -- [[ Set up keymaps ]] See `:h vim.keymap.set()`, `:h mapping`, `:h keycodes`
-- Use <Esc> to exit terminal mode -- 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 -- 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") vim.keymap.set({ "t", "i" }, "<A-h>", "<C-\\><C-n><C-w>h")
@ -235,7 +235,8 @@ local imap_expr = function(lhs, rhs)
end end
imap_expr('<Tab>', [[pumvisible() ? "\<C-n>" : "\<Tab>"]]) imap_expr('<Tab>', [[pumvisible() ? "\<C-n>" : "\<Tab>"]])
imap_expr('<S-Tab>', [[pumvisible() ? "\<C-p>" : "\<S-Tab>"]]) imap_expr('<S-Tab>', [[pumvisible() ? "\<C-p>" : "\<S-Tab>"]])
-- Snipped integration for mini.completion
-- Snippet integration for mini.completion
require("mini.snippets").setup() require("mini.snippets").setup()
-- Icons for statusline and completion -- Icons for statusline and completion

View file

@ -7,7 +7,7 @@
tooltip { tooltip {
font-weight: normal; font-weight: normal;
background: rgba(0.1, 0.1, 0.1, 0.9); background: rgba(25, 25, 25, 0.9);
border: solid 2px #505050; border: solid 2px #505050;
border-radius: 0px; border-radius: 0px;
} }