https://github.com/codebam/neovim
My NeoVim Configuration
https://github.com/codebam/neovim
Last synced: 8 months ago
JSON representation
My NeoVim Configuration
- Host: GitHub
- URL: https://github.com/codebam/neovim
- Owner: codebam
- Created: 2025-06-20T21:21:57.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2025-06-30T02:37:20.000Z (12 months ago)
- Last Synced: 2025-09-26T08:49:02.149Z (9 months ago)
- Language: Lua
- Homepage:
- Size: 68.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Neovim using Minimal Neovim wrapper
## To use:
- Set up Nix: https://nixos.org/download/
- Set up Flakes: https://wiki.nixos.org/wiki/Flakes#Nix_standalone
- Clone this repo
- Run `nix develop`
- Run neovim with either: `vi`, `vim`, or `nvim`
- `nix run github:codebam/neovim` to run neovim directly without cloning the repo
## To use as a home-manager module:
- include mnw in your `flake.nix`
```nix
mnw.url = "github:gerg-l/mnw";
```
- include this in the inputs of your `flake.nix`
```nix
neovim = {
url = "github:codebam/neovim";
inputs.nixpkgs.follows = "nixpkgs";
inputs.mnw.follows = "mnw";
};
```
- import both the home-manager modules wherever you put your `./home.nix`
```nix
inputs.mnw.homeManagerModules.default
inputs.neovim.homeManagerModules.default
```