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()
|
require('blake.lsp').signature()
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
use { -- Use the percent (%) key for more things
|
-- use { -- Use the percent (%) key for more things
|
||||||
'andymass/vim-matchup',
|
-- 'andymass/vim-matchup',
|
||||||
}
|
-- }
|
||||||
use { -- ALE: Support for lots of linters, etc
|
use { -- ALE: Support for lots of linters, etc
|
||||||
'dense-analysis/ale',
|
'dense-analysis/ale',
|
||||||
ft = {'sh', 'zsh', 'zshrc', 'bashrc', 'bash'},
|
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, })
|
vim.api.nvim_set_keymap('n', '<F5>', '<cmd>UndotreeToggle<CR>', { noremap = true, silent = true, })
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
-- use { -- Quote pairing
|
use { -- Quote pairing
|
||||||
-- 'jiangmiao/auto-pairs'
|
'windwp/nvim-autopairs',
|
||||||
-- }
|
config = function()
|
||||||
|
require('nvim-autopairs').setup()
|
||||||
|
end
|
||||||
|
}
|
||||||
use { -- Alignment
|
use { -- Alignment
|
||||||
'junegunn/vim-easy-align',
|
'junegunn/vim-easy-align',
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue