dotfiles/NixOS/modules/nvim/config.nix

22 lines
407 B
Nix
Raw Normal View History

2024-05-31 18:00:12 +02:00
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
];
home.file."${config.xdg.configHome}/nvim" = {
source = ./files;
recursive = true;
};
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
defaultEditor = true;
};
home.sessionVariables = {
LD_LIBRARY_PATH = "${pkgs.stdenv.cc.cc.lib}/lib";
};
}