From 92a78e4832b0f1de0595eee82c9444c56ca04b83 Mon Sep 17 00:00:00 2001 From: Micah Halter Date: Mon, 13 Mar 2023 07:53:18 -0400 Subject: [PATCH] feat(color): add modes.nvim plugin --- lua/astrocommunity/color/modes-nvim/README.md | 7 +++++++ lua/astrocommunity/color/modes-nvim/modes-nvim.lua | 9 +++++++++ 2 files changed, 16 insertions(+) create mode 100644 lua/astrocommunity/color/modes-nvim/README.md create mode 100644 lua/astrocommunity/color/modes-nvim/modes-nvim.lua diff --git a/lua/astrocommunity/color/modes-nvim/README.md b/lua/astrocommunity/color/modes-nvim/README.md new file mode 100644 index 000000000..b4e7f48c9 --- /dev/null +++ b/lua/astrocommunity/color/modes-nvim/README.md @@ -0,0 +1,7 @@ +# modes.nvim + +**Repository:** https://github.com/mvllow/modes.nvim + +_Note:_ This also disables `which-key` for operators in Neovim as this conflicts with this plugin. + +Prismatic line decorations for the adventurous vim user diff --git a/lua/astrocommunity/color/modes-nvim/modes-nvim.lua b/lua/astrocommunity/color/modes-nvim/modes-nvim.lua new file mode 100644 index 000000000..720335475 --- /dev/null +++ b/lua/astrocommunity/color/modes-nvim/modes-nvim.lua @@ -0,0 +1,9 @@ +return { + { "folke/which-key.nvim", opts = { plugins = { presets = { operators = false } } } }, + { + "mvllow/modes.nvim", + version = "^0.2", + event = "VeryLazy", + opts = {}, + }, +}