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
|
@ -101,5 +101,6 @@ alias vim='nvim'
|
|||
|
||||
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
|
||||
|
||||
# asdf command
|
||||
PATH=$PATH:~/.asdf/bin
|
||||
# asdf
|
||||
. "$HOME/.asdf/asdf.sh"
|
||||
. "$HOME/.asdf/completions/asdf.bash"
|
||||
|
|
|
@ -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)
|
||||
|
|
1
roles/neovim/files/plugin/surround.lua
Normal file
1
roles/neovim/files/plugin/surround.lua
Normal file
|
@ -0,0 +1 @@
|
|||
require("nvim-surround").setup()
|
Reference in a new issue