https://github.com/pydatablog/bbvim
https://github.com/pydatablog/bbvim
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pydatablog/bbvim
- Owner: PyDataBlog
- Created: 2025-02-09T21:38:32.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-03-27T08:18:06.000Z (about 2 months ago)
- Last Synced: 2025-03-27T09:29:52.677Z (about 2 months ago)
- Language: Lua
- Size: 95.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nvim-from-scratch
Personal neovim IDE
## Install
### Backup current config
```sh
mv ~/.config/nvim{,.bak}
mv ~/.local/share/nvim{,.bak}
mv ~/.local/state/nvim{,.bak}
mv ~/.cache/nvim{,.bak}
```### Remove current config
```sh
# Linux / MacOS (unix)
rm -rf ~/.config/nvim
rm -rf ~/.local/state/nvim
rm -rf ~/.local/share/nvim
```### Clone and run new config
```sh
git clone https://github.com/PyDataBlog/bbvim.git ~/.config/nvim
rm -rf ~/.config/nvim/.git
nvim
```