nvim: remove bold brackets

This commit is contained in:
thomasabishop 2024-02-02 11:03:38 +00:00
parent 1710a2b254
commit 3c529276be

View file

@ -15,6 +15,6 @@ rd.setup({
})
-- change colour values to match One Dark
vim.api.nvim_set_hl(0, "RainbowDelimiterViolet", { foreground = "#C678DD", bold = true })
vim.api.nvim_set_hl(0, "RainbowDelimiterYellow", { foreground = "#E5C07B", bold = true })
vim.api.nvim_set_hl(0, "RainbowDelimiterCyan", { foreground = "#56B6C2", bold = true })
vim.api.nvim_set_hl(0, "RainbowDelimiterViolet", { foreground = "#C678DD" })
vim.api.nvim_set_hl(0, "RainbowDelimiterYellow", { foreground = "#E5C07B" })
vim.api.nvim_set_hl(0, "RainbowDelimiterCyan", { foreground = "#56B6C2" })