nvim: Format plugins file

This commit is contained in:
Marty Oehme 2022-11-15 18:09:25 +01:00
parent 14f33460df
commit fadacf5313
Signed by: Marty
GPG key ID: 73BA40D5AFAF49C9

View file

@ -49,7 +49,12 @@ require("packer").startup(function()
}
-- 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 {
'monaqa/dial.nvim', -- extend the ^a / ^x possibilities to dates, hex, alphabets, markdown headers
event = "BufRead"
@ -115,6 +120,7 @@ require("packer").startup(function()
-- languages
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
use {