master #6

Merged
PlexSheep merged 9 commits from cscherrNT/configs:master into master 2023-07-14 19:45:20 +02:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 6d3d680158 - Show all commits

View File

@ -4,3 +4,7 @@ local Rule = require('nvim-autopairs.rule')
local npairs = require('nvim-autopairs')
npairs.add_rule(Rule("<>","<>","rs"))
EOF
" fix <CR> being not usable to select a completion item
inoremap <silent><expr> <cr> coc#pum#visible() ? coc#pum#confirm() :
\ "\<C-g>u\<c-r>=v:lua.require'nvim-autopairs'.autopairs_cr()\<CR>"

View File

@ -26,7 +26,3 @@ Plug 'lambdalisue/suda.vim'
"Plug 'dense-analysis/ale'
call plug#end()
lua << EOF
require("nvim-autopairs").setup {}
EOF