From 8f8615eeaeb3627d2bc853664804dbd500acea3f Mon Sep 17 00:00:00 2001 From: fleaz Date: Wed, 12 Mar 2025 19:33:42 +0100 Subject: [PATCH] neovim: Added nvim-surround plugin --- home-manager/modules/neovim.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home-manager/modules/neovim.nix b/home-manager/modules/neovim.nix index 741a5d9..962f730 100644 --- a/home-manager/modules/neovim.nix +++ b/home-manager/modules/neovim.nix @@ -76,6 +76,9 @@ # indentation lines indent-blankline-nvim + + # Add/change surrounding characters + nvim-surround ]; extraConfig = '' @@ -177,6 +180,7 @@ nnoremap fg Telescope live_grep lua << EOF + require("nvim-surround").setup({}) require("ibl").setup{ indent = { char = "▏" }; }