1
0
Fork 0

nvim: add nvim-surround

This commit is contained in:
tastytea 2022-08-31 22:59:30 +02:00
parent 401aaf87d7
commit 93de794218
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
2 changed files with 6 additions and 0 deletions

View File

@ -116,6 +116,10 @@ require('packer').startup({ function(use)
'https://github.com/phaazon/mind.nvim',
tag = '*'
}
use {
'https://github.com/kylechui/nvim-surround',
tag = '*'
}
-- coding
use {

View File

@ -112,3 +112,5 @@ map('n', '<C-F9>', mind.open_main, 'Open main mind')
map('n', '<F33>', mind.open_main, 'Open main mind') -- <C-F9> = <F33>
map('n', '<S-F9>', mind.open_main, 'Open main mind')
map('n', '<F21>', mind.open_project, 'Open project mind') -- <S-F9> = <F21>
require('nvim-surround').setup({})