dotfiles/modules/editor/neovim.nix

23 lines
413 B
Nix
Raw Normal View History

{ pkgs, user, ... }: {
2022-04-28 23:11:33 +00:00
home-manager.users.${user} = {
2022-04-28 23:11:33 +00:00
home.packages = with pkgs; [
neovim
gcc # for tree-sitter
];
2022-04-28 23:11:33 +00:00
xdg.configFile = {
"nvim/init.lua".source = ../../nvim.configlink/init.lua;
};
programs.git.extraConfig.core.editor = "nvim";
home.sessionVariables = { EDITOR = "nvim"; };
};
2022-04-28 23:11:33 +00:00
2022-04-29 01:56:21 +00:00
# Used for icons in Vim
fonts.fonts = with pkgs; [ nerdfonts ];
2022-04-28 23:11:33 +00:00
}