Loading

VSCode 配置 Neovim + Easymotion

Neovim 安装

Neovim 配置

安装插件

  • 创建init.vim文件
  • python -m pip install neovim
  • 安装vim-plug
iwr -useb https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim |`
    ni "$(@($env:XDG_DATA_HOME, $env:LOCALAPPDATA)[$null -eq $env:XDG_DATA_HOME])/nvim-data/site/autoload/plug.vim" -Force

详细如下


Lazy loading, my preferred way, as you can have both installable at once:

function! Cond(Cond, ...)
  let opts = get(a:000, 0, {})
  return a:Cond ? opts : extend(opts, { 'on': [], 'for': [] })
endfunction

" inside plug#begin:
Plug 'easymotion/vim-easymotion', Cond(!exists('g:vscode'))
Plug 'asvetliakov/vim-easymotion', Cond(exists('g:vscode'), { 'as': 'vsc-easymotion' })

Branching inside plug, simpler version of your above example, I like this worse because it makes installing confusing:

call plug#begin('/.config/nvim/plugged')
if exists('g:vscode')
  Plug 'asvetliakov/vim-easymotion', { 'as': 'vsc-easymotion' }
else
  Plug 'vim-easymotion/vim-easymotion'
endif

Neovim配置文件

set number relativenumber
set autoindent

let mapleader=";"

function! Cond(Cond, ...)
  let opts = get(a:000, 0, {})
  return a:Cond ? opts : extend(opts, { 'on': [], 'for': [] })
endfunction

call plug#begin('D:/ProgramFiles/Neovim/plugged')
" inside;plug#begin:
Plug 'easymotion/vim-easymotion', Cond(!exists('g:vscode'))
Plug 'asvetliakov/vim-easymotion', Cond(exists('g:vscode'), { 'as': 'vsc-easymotion' })
call plug#end()

let g:EasyMotion_smartcase = 1
nmap <Leader><Leader>z <Plug>(easymotion-jumptoanywhere)
nmap <Leader><Leader>x <Plug>(easymotion-s2)

easymotion 功能

https://raw.githubusercontent.com/Lokaltog/vim-easymotion/master/doc/easymotion.txt

posted @ 2022-07-14 18:30  ZXYFrank  阅读(1433)  评论(0编辑  收藏  举报