Created
May 4, 2026 11:18
-
-
Save PetrGlad/95795c7460a926c2bf8428b66dd0a208 to your computer and use it in GitHub Desktop.
My Neovim Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- 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