Skip to content

iguntur/vnix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vnix

My personal neovim configuration

Preview

Setup

(Option 1) Standalone

nix run github:iguntur/vnix

# or enable the experimental features directly command line
nix run --extra-experimental-features 'nix-command flakes' github:iguntur/vnix

(Option 2) As Flake Input

{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
    # ...
    vnix.url = "github:iguntur/vnix";
  };

  outputs = inputs@{ nixpkgs, ... }: {
    # Option 1: NixOS or Nix Darwin
    environment.systemPackages = [
      inputs.vnix.packages.${system}.default;
    ];

    # Option 2: Home Manager
    home.packages = [
      inputs.vnix.packages.${system}.default;
    ];
  };
}

Develop

git clone [email protected]:iguntur/vnix.git
cd vnix
nix run .

Update

nix flake update
nix run .

Credits

My setup was inspired by the LazyVim since my previous neovim configuration was setup using it. Thanks to nix-community and the configuration examples for the best guides.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages