My Neovim rcfiles
Install neovim first:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression
scoop bucket add main
scoop install neovimOr without scoope
$v = curl -L -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" https://api.github.com/repos/neovim/neovim/tags?per_page=1 | ConvertFrom-Json | Select -ExpandProperty name
curl -Lo nvim-win64.zip "https://github.com/neovim/neovim/releases/download/$v/nvim-win64.zip"Install rcfiles.
git clone https://github.com/JonasGao/nvimrc.git "$env:LOCALAPPDATA\nvim"
# git clone git@github.com:JonasGao/nvimrc.git "$env:LOCALAPPDATA\nvim"
cd "$env:LOCALAPPDATA\nvim"
.\install.ps1Startup neovim, run PackerInstall.
After install vc++ build tools ( or visual studio, containe vc++ build tools ). run .\install.ps1 -BuildFzf in "Developer Powershell for VS 20XX" build 'telescope navtive fzf'.
git clone https://github.com/JonasGao/nvimrc.git $HOME/.config/nvim
# git clone git@github.com:JonasGao/nvimrc.git $HOME/.config/nvim
cd $HOME/.config/nvim
./install.sh -pIf version lower. Install neovim in ubuntu
sudo add-apt-repository ppa:neovim-ppa/unstable
sudo apt-get update
sudo apt-get install neovim