diff options
-rw-r--r-- | lua/config/set.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/config/set.lua b/lua/config/set.lua index 82fd73f..201627e 100644 --- a/lua/config/set.lua +++ b/lua/config/set.lua @@ -103,11 +103,11 @@ opt.title = true -- Highlighting vim.cmd("match Todo /\\(TODO\\|FIXME\\):/") -vim.cmd("match matchURL /" .. "\\(https\\?\\|ftp\\|magnet\\):\\/\\/[[:alnum:]%\\/_#.-~:]*" .. "/") -vim.cmd("hi matchURL guifg=" .. require("nord.colors").palette.aurora.yellow) - -- -- Custom highlight for markdown definitions if vim.filetype.match({ buf = 0 }) == "markdown" then vim.cmd("match mdDefs /^[[:space:]]*-[^:]\\+:/") vim.cmd("hi mdDefs guifg=" .. require("nord.colors").palette.frost.ice) end + +vim.cmd("match matchURL /" .. "\\(https\\?\\|ftp\\|magnet\\):\\/\\/[[:alnum:]%\\/_#.-~:]*" .. "/") +vim.cmd("hi matchURL guifg=" .. require("nord.colors").palette.aurora.yellow) |