This is just my Neovim configuration. Download Neovim here: https://neovim.io/
This is shamelessly inspired by https://github.com/ThePrimeagen/init.lua/tree/249f3b14cc517202c80c6babd0f9ec548351ec71
Another big source of inspiration for v0.2.x is: https://github.com/nvim-lua/kickstart.nvim
A C compiler is required to compile and install some of the plugins.
# Debian/Ubuntu
sudo apt install build-essential
# Arch Linux
sudo pacman -S base-devel- Install Neovim
- Clone this repo in
~/.config/
mkdir ~/.config
git clone https://github.com/benoitchamot/nvim.git
cd nvimOf simply for Arch:
sudo pacman -S neovim- Open the config directory with Neovim
nvim .You will probably see a lot of things fail and it will take time to open.
Don't panic.
- Run Lazy
Run
:Lazy sync.
Let the magic happen.
-
Close nvim
-
Reopen it More magic happens.
-
Reapply the color scheme
:lua ColorMyPencils()
It should now be up and running and everything is nice.
Clipboard support is enabled in lua/mysetup/set.lua. To use, simply yank like you normally would to copy from Neovim and paste with Ctrl-v (or the macOS equivalent) into another program. It is also possible to paste from the OS into Neovim with Ctrl-v.