diff options
-rw-r--r-- | .config/nvim/lua/plugins.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index 60eebf0..1c13e75 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -14,6 +14,8 @@ local PKGS = { { url = "https://github.com/filipdutescu/renamer.nvim.git" }; { url = "https://github.com/folke/which-key.nvim.git" }; { url = "https://github.com/tpope/vim-abolish.git" }; + { url = "https://github.com/mg979/vim-visual-multi.git" }; + { url = "https://github.com/echasnovski/mini.nvim.git" }; -- Status line { url = "https://github.com/akinsho/bufferline.nvim.git" }; @@ -185,6 +187,8 @@ local function init_plugins() highlight = { enable = true; disable = { "markdown"; "yaml"; "sql" } }; }) + require('mini.surround').setup({}) + end return { |