From f8ff3b647f7cc8ec8fea0d1b972e5ad1d691f876 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Mon, 28 Feb 2022 20:46:35 +0100 Subject: [PATCH] Added modes.nvim --- lua/my_plugins.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lua/my_plugins.lua b/lua/my_plugins.lua index 5e33dfe..e3b8822 100644 --- a/lua/my_plugins.lua +++ b/lua/my_plugins.lua @@ -64,4 +64,13 @@ return require('packer').startup(function() 'nvim-treesitter/nvim-treesitter-textobjects', requires = "nvim-treesitter/nvim-treesitter" } + use {'mvllow/modes.nvim', + config = function() + vim.opt.cursorline = true + require('modes').setup({ + focus_only = true, + line_opacity = 0.2, + }) + end + } end)