roobert/surround-ui.nvim

github github
syntax
stars 60
issues 1
subscribers 2
forks 0
CREATED

2023-01-26

UPDATED

8 months ago


:hugs: Surround UI

surround-ui demo

A Neovim plugin which can be used as a training aid or leader-triggered replacement for some of the key combinations when using kylechui/nvim-surround.

This plugin uses folke/which-key.nvim.

:rocket: Installation

Lazy.nvim

{
  "roobert/surround-ui.nvim",
  dependencies = {
    "kylechui/nvim-surround",
    "folke/which-key.nvim",
  },
  config = function()
    require("surround-ui").setup({
      root_key = "S"
    })
  end,
}

Packer.nvim

use({
  "roobert/surround-ui.nvim",
  dependencies = {
    "kylechui/nvim-surround",
    "folke/which-key.nvim",
  },
  config = function()
    require("surround-ui").setup({
      root_key = "S"
    })
  end,
})