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 = {}, + }, +}