From 965b392ace8c7dcc846a4deb37cdce46b03e9a4c Mon Sep 17 00:00:00 2001 From: Yevhenii Moruhyi Date: Wed, 16 Aug 2023 19:49:08 -0400 Subject: [PATCH] add rose-pine colorscheme --- lua/plugins/theme.lua | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 lua/plugins/theme.lua diff --git a/lua/plugins/theme.lua b/lua/plugins/theme.lua new file mode 100644 index 00000000..ab7344e1 --- /dev/null +++ b/lua/plugins/theme.lua @@ -0,0 +1,26 @@ +return { + { + "rose-pine/neovim", + name = "rose-pine", + opts = { + variant = "moon", + dark_variant = "moon", + -- highlight_groups = { + -- Normal = { bg = "none" }, + -- NormalFloat = { bg = "none" }, + -- TelescopeBorder = { fg = "highlight_high", bg = "none" }, + -- TelescopeNormal = { bg = "none" }, + -- TelescopePromptNormal = { bg = "base" }, + -- TelescopeResultsNormal = { fg = "subtle", bg = "none" }, + -- TelescopeSelection = { fg = "text", bg = "base" }, + -- TelescopeSelectionCaret = { fg = "rose", bg = "rose" }, + -- }, + }, + }, + { + "LazyVim/LazyVim", + opts = { + colorscheme = "rose-pine", + }, + }, +}