feat: more settings

This commit is contained in:
Yadunand Prem 2025-04-15 20:30:52 -04:00
parent 396b169ec2
commit c1f7b3e522
No known key found for this signature in database
4 changed files with 19 additions and 3 deletions

View File

@ -22,7 +22,7 @@
commit.gpgsign = true;
commit.verbose = true;
merge.conflictstyle = "zdiff3";
# merge.conflictstyle = "zdiff2";
diff.colorMoved = true;
diff.algorithm = "histogram";
feature.experimental = true;

View File

@ -7,6 +7,9 @@
imports = [
inputs.nixvim.homeManagerModules.nixvim
];
home.packages = [
pkgs.nodejs_23
];
programs.nixvim = {
nixpkgs.pkgs = pkgs;
performance.combinePlugins.enable = false;

View File

@ -13,6 +13,11 @@
programs.bat = {
enable = true;
};
programs.dircolors = {
enable = true;
enableZshIntegration = true;
};
programs.zsh = {
enable = true;
prezto = {
@ -55,7 +60,6 @@
nodejs.disabled = true;
package.disabled = true;
aws.disabled = true;
elixir.disabled = true;
};
};
}

View File

@ -46,6 +46,7 @@
pkgs.rust-analyzer
pkgs.claude-code
pkgs.httpie
pkgs.emacs
# (inputs.ziggy.outputs.packages.aarch64-darwin.ziggy)
# (inputs.superhtml.outputs.packages.aarch64-darwin.superhtml)
@ -101,7 +102,6 @@
};
programs.kitty.shellIntegration.enableZshIntegration = true;
programs.emacs.enable = true;
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
@ -115,4 +115,13 @@
programs.gh = {
enable = true;
};
targets.darwin = {
defaults."com.apple.dock".autohide = true;
defaults."com.apple.finder".AppleShowAllFiles = true;
defaults.NSGlobalDomain.AppleShowAllExtensions = true;
defaults.NSGlobalDomain.KeyRepeat = 2;
defaults.NSGlobalDomain.ApplePressAndHoldEnabled = false;
};
}