home: vim: fix path high-lighting
ci/woodpecker/push/check Pipeline was successful Details

It was previously linked to `Underlined`, which just looks plain wrong
IMO.

This links it back to `GruvboxOrange`, as it used to be.
This commit is contained in:
Bruno BELANYI 2024-03-13 13:08:57 +00:00
parent d365aba3c0
commit 0ff8366105
1 changed files with 11 additions and 0 deletions

View File

@ -88,6 +88,17 @@ set background=dark
" 24 bit colors
set termguicolors
" Setup some overrides for gruvbox
lua << EOF
local gruvbox = require("gruvbox")
gruvbox.setup({
overrides = {
-- Only URLs should be underlined
["@string.special.path"] = { link = "GruvboxOrange" },
}
})
EOF
" Use my preferred colorscheme
colorscheme gruvbox
" }}}