Add leap.nvim to Neovim config

This commit is contained in:
Dennis Potter 2022-10-08 22:56:58 -07:00
parent b7ad0c3259
commit 6ab20431a9
Signed by: Dennis
GPG Key ID: 186A8AD440942BAF
1 changed files with 9 additions and 0 deletions

View File

@ -56,6 +56,9 @@ Plug 'kyazdani42/nvim-tree.lua'
" rust
Plug 'rust-lang/rust.vim'
" Leap, interface to move around
Plug 'ggandor/leap.nvim'
call plug#end()
" Set up Marks plugin
@ -123,3 +126,9 @@ require'nvim-tree'.setup {
},
}
EOF
" Set default keymap of Leap
lua << EOF
require('leap').set_default_keymaps()
EOF