Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nebunebu/nebvim
personal neovim configuration
https://github.com/nebunebu/nebvim
neovim neovim-configuration nix nix-flakes
Last synced: about 1 month ago
JSON representation
personal neovim configuration
- Host: GitHub
- URL: https://github.com/nebunebu/nebvim
- Owner: nebunebu
- License: mit
- Created: 2024-07-06T00:24:03.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-12-16T03:53:31.000Z (about 1 month ago)
- Last Synced: 2024-12-16T04:25:53.774Z (about 1 month ago)
- Topics: neovim, neovim-configuration, nix, nix-flakes
- Language: Lua
- Homepage:
- Size: 1.44 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nebvim
My personal neovim config using [tolerable](https://github.com/wires-org/tolerable-nvim-nix).
> [!CAUTION]
> This is a work in progress and is under constant development.
> This README does not necessarily reflect the current state of the
> configuration.## CONTENTS
- [Usage](<#usage>)
- [Gallery](<#gallery>)
- [Installation](<#installation>)
- [Configuration](<#configuration>)
- [Contributing](<#contributing>)
- [Special Thanks](<#special-thanks>)## Usage
To use without installing,
```sh
nix run github:nebunebu/nebvim
```## Gallery
### Greeter
![Greeter](https://imgur.com/4ztr5CR.png)
## Installation
Add nebvim to your flake inputs.
```nix
inputs = {
nebvim.url = "github:nebunebu/nebvim";
};
```To add as a system package,
```nix
{ inputs, pkgs, ...}:{
enviornment.systemPackages =
[ inputs.nebvim.packages."${pkgs.system}".default ];
}
```And to add as a home-manager package,
```nix
{ inputs, pkgs, ...}:{
home.packages = [ inputs.nebvim.packages."${pkgs.system}".default ];
}
```## Configuration
> [!NOTE]
> Coming Soon## Contributing
If you see any issues, or have any feedback or suggestions, feel free to submit
an issue or make a pull request.## Special Thanks
- [wires-org/tolerable-nvim-nix](https://github.com/wires-org/tolerable-nvim-nix)
- [mrshmllow/nvim-candy](https://github.com/mrshmllow/nvim-candy)
- All the plugin authors and contributors who make this configuration possible