https://github.com/razobeckett/nvim
My Neovim Setup
https://github.com/razobeckett/nvim
neovim neovim-config neovim-configuration neovim-dotfiles neovim-lua neovim-setup nvim nvim-configs nvim-lua-config nvim-setup
Last synced: 4 months ago
JSON representation
My Neovim Setup
- Host: GitHub
- URL: https://github.com/razobeckett/nvim
- Owner: RazoBeckett
- License: unlicense
- Created: 2024-01-28T11:06:32.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-12T08:56:37.000Z (about 1 year ago)
- Last Synced: 2025-01-12T09:30:50.882Z (about 1 year ago)
- Topics: neovim, neovim-config, neovim-configuration, neovim-dotfiles, neovim-lua, neovim-setup, nvim, nvim-configs, nvim-lua-config, nvim-setup
- Language: Lua
- Homepage: https://neovim.io/
- Size: 147 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Neovim Config
## Installation:
- Make a backup of your current Neovim files. (If you don't have anything related to Neovim configured on your machine, you can ignore this step)
```sh
# required
mv ~/.config/nvim{,.bak}
# optional but recommended
mv ~/.local/share/nvim{,.bak}
mv ~/.local/state/nvim{,.bak}
mv ~/.cache/nvim{,.bak}
```
- Clone the config
```sh
git clone https://github.com/razobeckett/nvim ~/.config/nvim
```
- Remove the `.git` folder, so you can add it to your own repo later
```sh
rm -rf ~/.config/nvim/.git
```
- Start Neovim!
```sh
nvim
```
## Try out with docker:
```sh
docker run -w /root -it --rm alpine:edge sh -uelic '
apk add git lazygit fzf curl neovim ripgrep alpine-sdk --update
git clone https://github.com/RazoBeckett/nvim ~/.config/nvim
cd ~/.config/nvim
nvim
'
```