https://github.com/maxwelbm/nvim
My Config Neovim
https://github.com/maxwelbm/nvim
lua neovim neovim-config nvim nvim-configs
Last synced: about 1 month ago
JSON representation
My Config Neovim
- Host: GitHub
- URL: https://github.com/maxwelbm/nvim
- Owner: maxwelbm
- License: mit
- Created: 2023-10-13T19:00:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-01T00:23:43.000Z (11 months ago)
- Last Synced: 2025-06-09T03:02:17.858Z (10 months ago)
- Topics: lua, neovim, neovim-config, nvim, nvim-configs
- Language: Lua
- Homepage:
- Size: 136 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# nvim
My Config Neovim
### Dependences
- ripgrep, gopls, xclip, nodejs, npm
### Install dependences:
```sh
# archlinux
sudo pacman -S git neovim ripgrep gopls xclip nodejs npm
# ubuntu
sudo apt-get install git neovim ripgrep gopls xclip nodejs npm
# fedora
sudo dnf install git neovim ripgrep gopls xclip nodejs npm
# macos
brew install git neovim ripgrep gopls xclip nodejs npm
```
### Install configs - Linux / Macos / Windows
```sh
# install Linux / Macos
git clone https://github.com/maxwelbm/nvim ~/.config/nvim --depth 1 && nvim
# install Windows
git clone https://github.com/maxwelbm/nvim $HOME\AppData\Local\nvim --depth 1
nvim
```
### Uninstall configs - Linux / Macos / Windows
```sh
# Linux / Macos (unix)
rm -rf ~/.config/nvim
rm -rf ~/.local/share/nvim
# Windows
rd -r ~\AppData\Local\nvim
rd -r ~\AppData\Local\nvim-data
```
### For testing rune this code sh in your bash:
```sh
docker run -w /root -it --rm alpine:latest sh -uelic '
apk add git nodejs neovim ripgrep build-base wget --update
git clone https://github.com/maxwelbm/nvim ~/.config/nvim
nvim
'
```
## License
This project is licensed under the terms of the [MIT](LICENSE) license.