Skip to content

Instantly share code, notes, and snippets.

@PetrGlad
Created May 4, 2026 11:18
Show Gist options
  • Select an option

  • Save PetrGlad/95795c7460a926c2bf8428b66dd0a208 to your computer and use it in GitHub Desktop.

Select an option

Save PetrGlad/95795c7460a926c2bf8428b66dd0a208 to your computer and use it in GitHub Desktop.
My Neovim Config
-- Fixes confusing drop-down menu selection colors.
-- Should be in ~/.config/nvim/init.lua
vim.opt.termguicolors = true
vim.api.nvim_set_hl(0, "Pmenu", { bg = "#0A0A0A", fg = "#A0A0A0" })
vim.api.nvim_set_hl(0, "PmenuSel", { bg = "#0A0A0A", fg = "#05FFFF", bold = true })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment