<aside>

Using nvim increases productivity. nvim users invest the increased productivity back into their nvim config. So, it all balances out in the end.

</aside>

vim memes

nvim cheatsheet

Notes

How to begin you nvim journey

vim 101

vim magic (tips)

nvim plugins

Debug

记录一次 Windows 从零开始配置 nvim

NeoVim Frontend Setup

[to-do] DIY neovim theme

[to-do] quick fix

Install

Installation

https://github.com/neovim/neovim/blob/master/INSTALL.md#linux

curl -LO <https://github.com/neovim/neovim/releases/latest/download/nvim-linux-arm64.tar.gz>

sudo tar -C /opt -xzf nvim-linux-arm64.tar.gz
sudo mv /opt/nvim-linux-arm64 /opt/nvim

# -s (symbolic link)
# -f (force) 表示强制覆盖已存在的目标文件
sudo ln -sf /opt/nvim/bin/nvim /usr/local/bin/nvim

or build from source code

https://github.com/neovim/neovim/blob/master/BUILD.md#

Config