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
|
||||
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 {
|
||||
|
|
Loading…
Reference in a new issue