In vim
, I remap my key tab
to <f12>
using this:
".vimrc
let g:UltiSnipsExpandTrigger="<F12>"
let g:UltiSnipsJumpForwardTrigger="<C-j>"
let g:UltiSnipsJumpBackwardTrigger="<C-k>"
now I want to migrate this to neovim
, done installed and everything, but not sure how to convert the above codes into Lua
.
how can I resolve that?