Skip to content

refactor: nixvim #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Feb 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ Configuration for each user.

Common configuration shared between Darwin and Linux.

## home-manager/common/neovim
## home-manager/common/nixvim

I've encountered version lock issues with both LazyVim and NixVim. Neither solution locks every package to a specific commit, making upgrades unpredictable. While I enjoy living on the edge, I dislike when my LSP stops working just as I find the motivation to work on my side projects.
Nixvim is a configuration system that uses Nix for plugin management. It leverages `vimPlugins` from the nixpkgs distribution, ensuring that plugin versions are locked.

## home-manager/common/zellij

Expand Down
258 changes: 248 additions & 10 deletions flake.lock

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

9 changes: 5 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,17 @@
# Nixpkgs
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";

# Nixpkgs unstable
# vue-language-server: 2.1.2 -> 2.1.6
nixpkgs-unstable.url = "github:nixos/nixpkgs/26ddb99cfd3f8e1092057f90e42db325dad4e5a5";
# Nixpkgs (unstable)
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-24.11";

# Home manager
home-manager.url = "github:nix-community/home-manager/release-24.05";
home-manager.inputs.nixpkgs.follows = "nixpkgs";

# NixOS WSL
nixos-wsl.url = "github:nix-community/nixos-wsl/2405.5.4";

# nixvim
nixvim.url = "github:nix-community/nixvim/nixos-24.05";
};

outputs =
Expand Down
Loading