diff options
| -rw-r--r-- | .config/nvim/init.lua | 3 | ||||
| -rw-r--r-- | .vimrc | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index 395a4d9..f2a65ab 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -1718,6 +1718,9 @@ vim.g.rustfmt_autosave = true -- sandwich {{{2 +vim.fn['operator#sandwich#set']('add', 'all', 'highlight', 2) +vim.fn['operator#sandwich#set']('delete', 'all', 'highlight', 0) +vim.fn['operator#sandwich#set']('replace', 'all', 'highlight', 2) @@ -1770,6 +1770,9 @@ let g:rustfmt_autosave = 1 " sandwich {{{2 +call operator#sandwich#set('add', 'all', 'highlight', 2) +call operator#sandwich#set('delete', 'all', 'highlight', 0) +call operator#sandwich#set('replace', 'all', 'highlight', 2) |
