mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
30 lines
647 B
Nix
30 lines
647 B
Nix
{ pkgs, identity, ... }: {
|
|
|
|
home-manager.users.${identity.user} = {
|
|
|
|
home.packages = with pkgs; [
|
|
neovim
|
|
gcc # for tree-sitter
|
|
];
|
|
|
|
xdg.configFile = {
|
|
"nvim/init.lua".source = ../../nvim.configlink/init.lua;
|
|
};
|
|
|
|
programs.git.extraConfig.core.editor = "nvim";
|
|
home.sessionVariables = { EDITOR = "nvim"; };
|
|
programs.fish = {
|
|
shellAliases = { vim = "nvim"; };
|
|
shellAbbrs = {
|
|
vll = "vim -c 'Telescope oldfiles'";
|
|
vimrc = "vim ${builtins.toString ../../.}/nvim.configlink/init.lua";
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
# Used for icons in Vim
|
|
fonts.fonts = with pkgs; [ nerdfonts ];
|
|
|
|
}
|