From 313dcd07207cb946531eff85535cd2ebab0cf004 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sun, 8 Sep 2024 08:25:45 +0200 Subject: [PATCH] nvim: editor: add color highlights in document --- nvim/lua/user/plugins/editor.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/nvim/lua/user/plugins/editor.lua b/nvim/lua/user/plugins/editor.lua index b49ccd6..956aa20 100644 --- a/nvim/lua/user/plugins/editor.lua +++ b/nvim/lua/user/plugins/editor.lua @@ -1,5 +1,15 @@ return { { import = "user.plugins.editor.treesitter" }, + -- color highlight in documents + { + 'brenoprata10/nvim-highlight-colors', + opts = { + render = 'virtual', + virtual_symbol_position = 'eol', + virtual_symbol_prefix = '', + virtual_symbol_suffix = '', + } + }, "echasnovski/mini.bufremove", { "windwp/nvim-autopairs",