nvim.config/lua/plugins/editing.lua

42 lines
599 B
Lua

return {
{
'windwp/nvim-autopairs',
event = "InsertEnter",
opts = {}
},
{
'windwp/nvim-ts-autotag',
opts = {}
},
{
'RRethy/nvim-treesitter-endwise',
config = function()
require('nvim-treesitter.configs').setup {
endwise = {
enable = true,
},
}
end
},
{
"utilyre/sentiment.nvim",
version = "*",
event = "VeryLazy",
opts = {},
init = function()
vim.g.loaded_matchparen = 1
end,
},
{
'rgroli/other.nvim',
config = {
mappings = {
'angular'
}
},
keys = {
{ '<leader>s', '<cmd>Other<CR>', desc = 'Open other file' }
}
}
}