dotfiles/common/users/homeModules/nvim.nix

19 lines
501 B
Nix
Raw Normal View History

{pkgs, lib, config, ...}: {
2024-11-26 17:01:58 -05:00
home = {
packages = with pkgs; [
neovim
];
file = {
nvim = {
recursive = true;
2024-11-26 17:25:32 -05:00
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/nixos/dotfiles/nvim";
2024-11-26 17:01:58 -05:00
target = "./.config/nvim";
};
};
sessionVariables = {
EDITOR = "nvim";
MANPAGER = "nvim +Man!";
MANWIDTH = "999";
};
2024-11-26 17:18:44 -05:00
};
2024-11-26 17:01:58 -05:00
}