feat(nvim-surround): add integration (#733)

* feat(nvim-surround): add integration

* chore: update README.md

* fix: update README.md
This commit is contained in:
Myles Mo 2024-07-19 00:06:27 +08:00 committed by GitHub
parent 7946d1a195
commit 3f16c6d1f2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 24 additions and 0 deletions

View file

@ -1124,6 +1124,20 @@ semantic_tokens = true
</tr>
<!-- nvim-semantic-tokens -->
<!-- nvim-surround -->
</tr>
<tr>
<td> <a href="https://github.com/kylechui/nvim-surround">nvim-surround</a> </td>
<td>
```lua
nvim_surround = false
```
</td>
</tr>
<!-- nvim-surround -->
<!-- nvim-tree.lua -->
</tr>
<tr>

View file

@ -0,0 +1,9 @@
local M = {}
function M.get()
return {
NvimSurroundHighlight = { bg = U.darken(C.peach, 0.6, C.base), style = { "bold" } },
}
end
return M

View file

@ -185,6 +185,7 @@
---@field neotree boolean?
---@field noice boolean?
---@field notify boolean?
---@field nvim_surround boolean?
---@field nvimtree boolean?
---@field octo boolean?
---@field overseer boolean?