This repository has been archived on 2025-11-26. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
nixos-config/modules/home/nvim.nix

18 lines
365 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [lunarvim];
programs.neovide = {
enable = true;
settings = {
neovim-bin = "${pkgs.lunarvim}/bin/lvim";
};
};
home.shellAliases = builtins.listToAttrs (map (key: {
name = key;
value = "lvim";
})
["vi" "vim" "nvim"]);
home.sessionPath = ["${pkgs.clang-tools}/bin:$PATH"];
}