nvim: new quote pairing plugin
This commit is contained in:
parent
ffc613da83
commit
6bd7fd8839
1 changed files with 9 additions and 6 deletions
|
@ -77,9 +77,9 @@ return require('packer').startup(function()
|
|||
require('blake.lsp').signature()
|
||||
end,
|
||||
}
|
||||
use { -- Use the percent (%) key for more things
|
||||
'andymass/vim-matchup',
|
||||
}
|
||||
-- use { -- Use the percent (%) key for more things
|
||||
-- 'andymass/vim-matchup',
|
||||
-- }
|
||||
use { -- ALE: Support for lots of linters, etc
|
||||
'dense-analysis/ale',
|
||||
ft = {'sh', 'zsh', 'zshrc', 'bashrc', 'bash'},
|
||||
|
@ -162,9 +162,12 @@ return require('packer').startup(function()
|
|||
vim.api.nvim_set_keymap('n', '<F5>', '<cmd>UndotreeToggle<CR>', { noremap = true, silent = true, })
|
||||
end
|
||||
}
|
||||
-- use { -- Quote pairing
|
||||
-- 'jiangmiao/auto-pairs'
|
||||
-- }
|
||||
use { -- Quote pairing
|
||||
'windwp/nvim-autopairs',
|
||||
config = function()
|
||||
require('nvim-autopairs').setup()
|
||||
end
|
||||
}
|
||||
use { -- Alignment
|
||||
'junegunn/vim-easy-align',
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue