icmp and snip rice

This commit is contained in:
iofq 2024-08-08 01:19:53 -05:00
parent 62b7e838d9
commit 2a6ff7e85a
5 changed files with 126 additions and 27 deletions

View file

@ -53,9 +53,10 @@ require('mini.pairs').setup(
mappings = {
['['] = { action = 'open', pair = '[]', neigh_pattern = '[^\\].' },
['{'] = { action = 'open', pair = '{}', neigh_pattern = '[^\\].' },
[']'] = { action = 'close', pair = '[]', neigh_pattern = '[^\\].' },
['}'] = { action = 'close', pair = '{}', neigh_pattern = '[^\\].' },
['"'] = { },
['\''] = { },
},
}
)
@ -75,15 +76,15 @@ indent.setup({
indent.gen_animation.none()
-- <C-Space>
require('mini.completion').setup({
delay = {completion = 10^7},
window = {
info = { height = 25, width = 80, border = 'single' },
signature = { height = 25, width = 80, border = 'single' },
},
lsp_completion = {
source_func = 'completefunc',
auto_setup = true,
},
fallback_action = "<C-x><C-n>"
})
-- require('mini.completion').setup({
-- delay = {completion = 10^7},
-- window = {
-- info = { height = 25, width = 80, border = 'single' },
-- signature = { height = 25, width = 80, border = 'single' },
-- },
-- lsp_completion = {
-- source_func = 'completefunc',
-- auto_setup = true,
-- },
-- fallback_action = "<C-x><C-n>"
-- })