nvim: add vim-sort-motion and vissort.vim
This commit is contained in:
parent
7c024db210
commit
e5ccbd3ad6
1 changed files with 12 additions and 1 deletions
|
@ -257,6 +257,16 @@ return require('packer').startup({function()
|
||||||
-- }
|
-- }
|
||||||
|
|
||||||
-- Conveniences
|
-- Conveniences
|
||||||
|
use { -- sort motion (gs)
|
||||||
|
'christoomey/vim-sort-motion',
|
||||||
|
config = function()
|
||||||
|
vim.cmd [[
|
||||||
|
"let g:sort_motion_flags = 'i'
|
||||||
|
let g:sort_motion_visual_block_command = 'Vissort'
|
||||||
|
]]
|
||||||
|
end,
|
||||||
|
requires = 'navicore/vissort.vim', -- config requires
|
||||||
|
}
|
||||||
use { -- Ghost: Web browser integration
|
use { -- Ghost: Web browser integration
|
||||||
'raghur/vim-ghost',
|
'raghur/vim-ghost',
|
||||||
opt = true,
|
opt = true,
|
||||||
|
@ -298,7 +308,8 @@ return require('packer').startup({function()
|
||||||
-- map_c_h = true,
|
-- map_c_h = true,
|
||||||
-- map_c_w = true,
|
-- map_c_w = true,
|
||||||
})
|
})
|
||||||
end
|
end,
|
||||||
|
requires = 'hrsh7th/nvim-cmp', -- config requires
|
||||||
}
|
}
|
||||||
use { -- ts-autotag: automatically close html tags
|
use { -- ts-autotag: automatically close html tags
|
||||||
'windwp/nvim-ts-autotag',
|
'windwp/nvim-ts-autotag',
|
||||||
|
|
Loading…
Add table
Reference in a new issue