home: vim: fix path high-lighting
All checks were successful
ci/woodpecker/push/check Pipeline was successful
All checks were successful
ci/woodpecker/push/check Pipeline was successful
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:
parent
d365aba3c0
commit
0ff8366105
|
@ -88,6 +88,17 @@ set background=dark
|
||||||
|
|
||||||
" 24 bit colors
|
" 24 bit colors
|
||||||
set termguicolors
|
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
|
" Use my preferred colorscheme
|
||||||
colorscheme gruvbox
|
colorscheme gruvbox
|
||||||
" }}}
|
" }}}
|
||||||
|
|
Loading…
Reference in a new issue