dotfiles/modules/neovim/default.nix

32 lines
699 B
Nix
Raw Normal View History

2022-05-07 20:54:47 +00:00
{ config, pkgs, lib, ... }: {
2022-04-28 23:11:33 +00:00
home-manager.users.${config.user} = {
2022-04-28 23:11:33 +00:00
home.packages = [
(import ./package {
inherit pkgs;
colors = import config.theme.colors.neovimConfig { inherit pkgs; };
})
];
2022-04-28 23:11:33 +00:00
programs.git.extraConfig.core.editor = "nvim";
2022-05-12 01:13:41 +00:00
home.sessionVariables = {
EDITOR = "nvim";
MANPAGER = "nvim +Man!";
};
2022-04-30 14:21:43 +00:00
programs.fish = {
2022-05-30 17:09:50 +00:00
shellAliases = { vim = "nvim"; };
2022-05-29 17:44:45 +00:00
shellAbbrs = {
v = lib.mkForce "nvim";
vl = lib.mkForce "vim -c 'normal! `0' -c 'bdelete 1'";
2022-05-29 17:44:45 +00:00
vll = "nvim -c 'Telescope oldfiles'";
};
2022-04-30 14:21:43 +00:00
};
};
2022-04-28 23:11:33 +00:00
# # Used for icons in Vim
# fonts.fonts = with pkgs; [ nerdfonts ];
2022-04-29 01:56:21 +00:00
2022-04-28 23:11:33 +00:00
}