My configuration of nixvim
Heavily inspired by JMartJonesy's kickstart.nixvim, dc-tec/nixvim and the other examples on the nixvim docs
To configure new settings, just add or modify the nix files in ./config.
If you add a new configuration file, it gets automaticly picked up by
config/default.nix
To test your configuration simply run the following command
nix run .Add to flake inputs of nixox configutation flake
inputs.nixvimcfg.url = "github:s-sinnlos/nixvimcfg";And add to nixosConfiguration
environment.systemPackages = [ inputs.nixvimcfg.packages.${system}.default ];... or to home-manager
home.packages = [ inputs.nixvimcfg.packages.${system}.default ];