Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

Commit

Permalink
feat(neovim): storopoli/neovix run anywhere (#30)
Browse files Browse the repository at this point in the history
Closes #29.
  • Loading branch information
storopoli authored Jan 11, 2024
1 parent 93e26a1 commit 2cba04f
Show file tree
Hide file tree
Showing 22 changed files with 259 additions and 829 deletions.
4 changes: 2 additions & 2 deletions common/shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

# Environment Variables
variables = {
EDITOR = "vim";
VISUAL = "vim";
EDITOR = "nvim";
VISUAL = "nvim";
LANG = "en_US.UTF-8";
};
};
Expand Down
245 changes: 238 additions & 7 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@
url = "github:dwarfmaster/arkenfox-nixos";
inputs.nixpkgs.follows = "nixpkgs";
};
neovix = {
url = "github:storopoli/neovix";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-parts.follows = "flake-parts";
};
};
};

outputs = inputs @ { self, ... }:
Expand Down Expand Up @@ -156,6 +163,7 @@
nixpkgs.overlays = [
inputs.rust-overlay.overlays.default
inputs.agenix.overlays.default
inputs.neovix.overlays.default
];
}
(import ./common)
Expand Down
2 changes: 1 addition & 1 deletion home-manager/shell/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
imports = [
./fish
#./vim
./neovim
./neovim.nix
./git.nix
./gpg.nix
./ssh.nix
Expand Down
Loading

0 comments on commit 2cba04f

Please sign in to comment.