https://github.com/nicklayb/astronvim
https://github.com/nicklayb/astronvim
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nicklayb/astronvim
- Owner: nicklayb
- Created: 2024-09-26T02:37:26.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-08T03:32:29.000Z (over 1 year ago)
- Last Synced: 2025-03-08T04:25:55.322Z (over 1 year ago)
- Language: Lua
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AstroNvim Config
**NOTE:** This is for AstroNvim v4+
## Installing without Nixg
```sh
git clone git@github.com:nicklayb/astronvim.git ~/.config/nvim
```
## Installing as part as NixOS's flake
### 1. Add as Input
```nix
{ }: {
inputs = {
astronvim = { url = "github:nicklayb/astronvim", flake = false };
};
}
```
### 2. Add to Home Manager
```nix
{ }: {
home.nboisvert.xdg.configFile."nvim".source = import inputs.astronvim;
}
```
### How to update it
1. Clone as seperate nvim config `git clone git@github.com:nicklayb/astronvim.git ~/.config/nvim-astro`
2. Update the seperate config
3. Run nvim with this specific config `NVIM_APPNAME=nvim-astro nvim`
4. Check everything works
5. Commit, push
6. Update NixOS Flake and rebuild system