add vim surround plugin
fix asdf loading
This commit is contained in:
parent
ebd4dfffcf
commit
9676d13187
4 changed files with 18 additions and 6 deletions
|
@ -17,9 +17,6 @@ return require('packer').startup(function()
|
|||
-- Git line decorations
|
||||
use 'lewis6991/gitsigns.nvim'
|
||||
|
||||
-- Git commands from vim
|
||||
use 'tpope/vim-fugitive'
|
||||
|
||||
-- File browser
|
||||
use {
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
|
@ -42,4 +39,13 @@ return require('packer').startup(function()
|
|||
|
||||
-- Fast jumping
|
||||
use 'ggandor/leap.nvim'
|
||||
|
||||
-- Surround objects
|
||||
use({
|
||||
"kylechui/nvim-surround",
|
||||
tag = "*",
|
||||
requires = {
|
||||
"tpope/vim-repeat"
|
||||
}
|
||||
})
|
||||
end)
|
||||
|
|
Reference in a new issue