https://github.com/khuedoan/nvim-minimal
Minimum viable Neovim config
https://github.com/khuedoan/nvim-minimal
Last synced: 6 months ago
JSON representation
Minimum viable Neovim config
- Host: GitHub
- URL: https://github.com/khuedoan/nvim-minimal
- Owner: khuedoan
- License: gpl-3.0
- Created: 2023-10-01T12:41:12.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2025-01-30T04:19:22.000Z (8 months ago)
- Last Synced: 2025-02-07T12:29:07.431Z (8 months ago)
- Language: Lua
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Minimum viable Neovim config
I use this for troubleshooting on remote servers or computers that aren't mine.
It should also be useful as a starting point for beginners.## Usage
Install the following packages:
- `neovim` >= v0.9.0
- `fzf`
- `ripgrep````sh
# Arch
sudo pacman -S neovim fzf ripgrep
``````sh
# Debian/Ubuntu
sudo apt install neovim fzf ripgrep
``````sh
# Fedora/RedHat/CentOS/Rocky
sudo dnf install neovim fzf ripgrep
``````sh
# Alpine
sudo apk add neovim fzf ripgrep
``````sh
# macOS Homebrew
brew install neovim fzf ripgrep
``````nix
# NixOS
{
environment.systemPackages = with pkgs; [
neovim
fzf
ripgrep
];
}
```Then clone the config (or just copy the `init.lua` file to `~/.config/nvim/init.lua`):
```sh
git clone https://github.com/khuedoan/nvim-minimal ~/.config/nvim
```