54 lines
845 B
Markdown
54 lines
845 B
Markdown
# NeoVim config from Ward Truyen 2026
|
|
|
|
Use the makefile for a fast full instal of neovim, it's config and tools.
|
|
|
|
## How to:
|
|
|
|
### Use this config
|
|
|
|
Copy the lua files and folders from here to `~/.config/nvim/`
|
|
|
|
```bash
|
|
cp ./*.lua ~/.config/nvim/
|
|
cp -r ./lua ~/.config/nvim/
|
|
```
|
|
|
|
or
|
|
|
|
```make
|
|
make install
|
|
```
|
|
|
|
### Set your config in this repo
|
|
|
|
Copy the lua files and folders from `~/.config/nvim/` to here
|
|
```bash
|
|
cp ~./config/nvim/*.lua ./
|
|
cp -r ~/.config/nvim/ ./lua
|
|
```
|
|
|
|
or
|
|
|
|
```make
|
|
make getmycode
|
|
```
|
|
|
|
### instal arch packages (pacman)
|
|
|
|
```bash
|
|
sudo pacman -S --needed vim nvim
|
|
sudo pacman -S --needed wl-clipboard
|
|
sudo pacman -S --needed neovide
|
|
sudo pacman -S --needed tree git make
|
|
```
|
|
|
|
or
|
|
|
|
```make
|
|
make instal-optionals-archlinux
|
|
```
|
|
|
|
>For zsh/bash config
|
|
> use the repo: [shell-config](https://git.truyen.network/ward/shell-config)
|
|
|