nvim: Format plugins file
This commit is contained in:
parent
14f33460df
commit
fadacf5313
1 changed files with 28 additions and 22 deletions
|
@ -49,7 +49,12 @@ require("packer").startup(function()
|
||||||
}
|
}
|
||||||
|
|
||||||
-- editing
|
-- editing
|
||||||
use {'machakann/vim-sandwich', event = "BufRead"} -- surround things with other things using sa/sd/sr
|
-- use {'machakann/vim-sandwich', event = "BufRead"} -- surround things with other things using sa/sd/sr
|
||||||
|
use {
|
||||||
|
'kylechui/nvim-surround',
|
||||||
|
tag = '*',
|
||||||
|
config = function() require('nvim-surround').setup() end
|
||||||
|
} -- surround things with other things using ys/cs/ds
|
||||||
use {
|
use {
|
||||||
'monaqa/dial.nvim', -- extend the ^a / ^x possibilities to dates, hex, alphabets, markdown headers
|
'monaqa/dial.nvim', -- extend the ^a / ^x possibilities to dates, hex, alphabets, markdown headers
|
||||||
event = "BufRead"
|
event = "BufRead"
|
||||||
|
@ -115,6 +120,7 @@ require("packer").startup(function()
|
||||||
|
|
||||||
-- languages
|
-- languages
|
||||||
use { 'euclidianAce/BetterLua.vim', ft = 'lua' } -- better syntax highlighting for lua
|
use { 'euclidianAce/BetterLua.vim', ft = 'lua' } -- better syntax highlighting for lua
|
||||||
|
use 'aliou/bats.vim' -- enable syntax for bats shell-code testing library
|
||||||
|
|
||||||
-- REPL work
|
-- REPL work
|
||||||
use {
|
use {
|
||||||
|
|
Loading…
Reference in a new issue