Compare commits
3 Commits
7284f02110
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 22c54b0384 | |||
| 20fab74fb9 | |||
| bfb6575b12 |
54
README.md
54
README.md
@@ -1,7 +1,53 @@
|
|||||||
# NeoVim config repository from Ward Truyen 2025
|
# NeoVim config from Ward Truyen 2026
|
||||||
|
|
||||||
Use the makefile to fully instal vim and it's config
|
Use the makefile for a fast full instal of neovim, it's config and tools.
|
||||||
|
|
||||||
## changelog:
|
## 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)
|
||||||
|
|
||||||
- Change: removed makefile target instal-zsh-optionals, instead use the repo https://git.truyen.network/ward/shell-config
|
|
||||||
|
|||||||
2
makefile
2
makefile
@@ -1,5 +1,7 @@
|
|||||||
NVIM_CONFIG=~/.config/nvim/#
|
NVIM_CONFIG=~/.config/nvim/#
|
||||||
|
|
||||||
|
.PHONY: default help install instal print-help getmycode instal-optionals-archlinux fullinstal-arch instal-opts-arch
|
||||||
|
|
||||||
default : print-help
|
default : print-help
|
||||||
help : print-help
|
help : print-help
|
||||||
install : instal
|
install : instal
|
||||||
|
|||||||
Reference in New Issue
Block a user