Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
June 23, 2022 12:09 pm GMT

Setup NeoVim on macOS with plugin manager and Hop (easy-motion)

  1. brew install nvim
  2. vim-plug: sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
  3. Open init.vim
" pluginscall plug#begin(stdpath('data') . '/plugged')Plug 'phaazon/hop.nvim'call plug#end()" hoplua << EOFrequire'hop'.setup()EOF

Open a file in nvim and type in :PlugUpdate, you'll see installation process. Now type in :HopWord and hop should be working.


Original Link: https://dev.to/satwanjyu/setup-neovim-on-macos-with-plugin-manager-and-hop-easy-motion-335n

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To