C++? Rust? Maybe Python? This config is good for programming in most languages. Syntax highlighting, snippets, LSR, and Vim-motions will take your fast coding to the next level.
Ubuntu / Debian /Linux Mint / Pop!_OS / Zorin OS
sudo add-apt-repository ppa:neovim-ppa/stable -y
sudo apt update && sudo apt install neovim
Arch / Manjaro / EndeavourOS / CachyOS
sudo pacman -S neovim
OpenSUSE
sudo zypper install neovim
Gentoo
sudo emerge -a app-editors/neovim
Fedora
sudo dnf install neovim
Last stable verison:
curl:
TAG=$(curl -s https://api.github.com/repos/TheItcor/MoaiVim/releases/latest | grep "tag_name" | cut -d : -f 2 | cut -d \" -f2) && curl -L https://github.com/TheItcor/MoaiVim/archive/refs/tags/$TAG.zip -o /tmp/moai.zip && unzip /tmp/moai.zip -d /tmp/moai && mkdir -p ~/.config/nvim && mv /tmp/moai/*/* ~/.config/nvim/ && rm -rf /tmp/moai /tmp/moai.zip
wget:
TAG=$(wget -q -O - https://api.github.com/repos/TheItcor/MoaiVim/releases/latest | grep "tag_name" | cut -d : -f 2 | cut -d \" -f2) && wget https://github.com/TheItcor/MoaiVim/archive/refs/tags/$TAG.zip -O /tmp/moai.zip && unzip /tmp/moai.zip -d /tmp/moai && mkdir -p ~/.config/nvim && mv /tmp/moai/*/* ~/.config/nvim/ && rm -rf /tmp/moai /tmp/moai.zip
Unstable / bleeding-edge version verison:
git clone https://github.com/TheItcor/MoaiVim.git ~/.config/nvim
nvim
... And just wait for Vim-Plug, plugins, and lsp to download.
| Command | Keys |
|---|---|
| Open/Close Terminal | Alt + x |
| File tree | Alt + e |
| Compile & Run | F5 |
| File Menu | Space + gg |
| Definition | K |
It's GNU Licensе: GPL-3.0
Thank you for your interest in my project. I welcome any suggestions you may have.