|
@@ -194,6 +194,18 @@ require('mini.jump').setup({
|
|
},
|
|
},
|
|
})
|
|
})
|
|
|
|
|
|
|
|
+-- autopair brackets
|
|
|
|
+require('mini.pairs').setup({
|
|
|
|
+ mappings = {
|
|
|
|
+ -- default config includes (, [ and {
|
|
|
|
+
|
|
|
|
+ -- autopair <> if preceded by a character, otherwise it might be a regular
|
|
|
|
+ -- comparison operation
|
|
|
|
+ ['<'] = { action = 'open', pair = '<>', neigh_pattern = '%w.' },
|
|
|
|
+ ['>'] = { action = 'close', pair = '<>', neigh_pattern = '%w.' },
|
|
|
|
+ },
|
|
|
|
+})
|
|
|
|
+
|
|
-- notifications
|
|
-- notifications
|
|
require('mini.notify').setup()
|
|
require('mini.notify').setup()
|
|
vim.notify = require('mini.notify').make_notify()
|
|
vim.notify = require('mini.notify').make_notify()
|