mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 06:22:56 +00:00
13 lines
234 B
Nix
13 lines
234 B
Nix
|
{ config, pkgs, ... }: {
|
||
|
|
||
|
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";
|
||
|
|
||
|
}
|