From 39dd687ed95dc990b010cf68ae9302b6c0150311 Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 20 Sep 2022 15:40:30 +0200 Subject: [PATCH] feat: Add support to markid (#97) (#99) --- lua/rose-pine/plugins/markid.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lua/rose-pine/plugins/markid.lua diff --git a/lua/rose-pine/plugins/markid.lua b/lua/rose-pine/plugins/markid.lua new file mode 100644 index 0000000..9279adb --- /dev/null +++ b/lua/rose-pine/plugins/markid.lua @@ -0,0 +1,10 @@ +--- Rosé Pine for markid +--- https://github.com/David-Kunz/markid +--- +--- @usage +--- local highlights = require('rose-pine.plugins.markid') +--- require("nvim-treesitter.configs").setup({ markid = { enable = true, colors = highlights } }) + +local p = require('rose-pine.palette') + +return { p.foam, p.rose, p.iris }