Skip to content

uchars/nixvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation

Install NixOS or the nix package manager: https://nixos.org/download

NOTE (corporate): make sure the HTTP(s)_PROXY, http(s)_proxy, ftp_proxy environment variables are set

Normal nvim install (no nix)

  1. you need to change the following in init.lua:
    if true then
      require('bootstrap')
    end
  2. copy the nvim folder of this repo to $HOME/.config/nvim.

NixOS (with flakes)

  1. Add your flake to you NixOS flake inputs.
  2. Add the overlay provided by this flake.
nixpkgs.overlays = [
    # replace <kickstart-nix-nvim> with the name you chose
    <kickstart-nix-nvim>.overlays.default
];

You can then add the overlay's output(s) to the systemPackages:

environment.systemPackages = with pkgs; [
    nvim-pkg # The default package added by the overlay
];

Non-NixOS

With Nix installed (flakes enabled), from the repo root:

nix profile remove nvim --extra-experimental-features nix-command ; nix --experimental-features 'nix-command flakes' profile install .#nvim

About

my nvim config as a flake.nix

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published