Skip to content

justnixvim is a Neovim configuration built with Nixvim (fork of Akari)

Notifications You must be signed in to change notification settings

JustAlternate/justnixvim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nixvim flake based on Lazyvim with golang support


🔨 Installation

If you'd like to give it a try before installing: nix run github:JustAlternate/justnixvim

Adding it as a flake

1: Go to the flake.nix and add justnixvim.url = "github:JustAlternate/justnixvim" to your inputs.

# flake
{
  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
    justnixvim.url = "github:JustAlternate/justnixvim";
  };
}

2: Run nix flake update

3: Install it by adding inputs.justnixvim.packages.${system}.default to your environment.systemPackages or home.packages. If you're using home-manager.

# packages
{ inputs, pkgs, ... }:
{
  home.packages = with pkgs; [
    inputs.justnixvim.packages.${system}.default
  ];
}

4: Rebuild your system.

Testing your new configuration

To test your configuration simply run the following command

nix run .

Credits

The original creator of this configuration

About

justnixvim is a Neovim configuration built with Nixvim (fork of Akari)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Nix 100.0%