summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--system/prefect.nix3
-rw-r--r--user/emacs/init.el2
-rw-r--r--user/settings/javascript.nix2
-rw-r--r--user/settings/zsh.nix1
4 files changed, 6 insertions, 2 deletions
diff --git a/system/prefect.nix b/system/prefect.nix
index f45e33c0..7609d9a3 100644
--- a/system/prefect.nix
+++ b/system/prefect.nix
@@ -26,7 +26,6 @@
     ./settings/gaming.nix
     ./settings/programs/tor.nix
     ./settings/programs/barrier.nix
-    ./settings/services/syncthing.nix
   ];
   boot.loader.efi.canTouchEfiVariables = pkgs.lib.mkForce false;
   services.xserver.screenSection = ''
@@ -40,7 +39,7 @@
   };
 
   powerManagement.enable = false;
-  # powerManagement.cpuFreqGovernor = "performance";
+  powerManagement.cpuFreqGovernor = "performance";
   networking = {
     hostName = "prefect";
     domain = pkgs.lib.mkForce "alanpearce.eu";
diff --git a/user/emacs/init.el b/user/emacs/init.el
index 250c1a14..87c9b8c8 100644
--- a/user/emacs/init.el
+++ b/user/emacs/init.el
@@ -83,6 +83,8 @@
   (setq frame-background-mode 'light)
   (mapc 'frame-set-background-mode (frame-list)))
 
+(setq font-lock-maximum-decoration '((t . 1)))
+
 ;;; Chrome
 (column-number-mode +1)
 (use-package doom-modeline
diff --git a/user/settings/javascript.nix b/user/settings/javascript.nix
index 197eb86c..dd89c5b3 100644
--- a/user/settings/javascript.nix
+++ b/user/settings/javascript.nix
@@ -66,7 +66,9 @@ in
     pit = "pnpm install-test --filter=.";
     pl = "pnpm ls";
     pr = "pnpm run";
+    pb = "pnpm run build";
     prb = "pnpm run build";
+    pbd = "pnpm multi run build --filter={.}...";
     pmi = "pnpm multi install";
     pmx = "pnpm multi exec "; # expand command aliases
     pmr = "pnpm multi run";
diff --git a/user/settings/zsh.nix b/user/settings/zsh.nix
index 3fb6d57d..4eafb0fe 100644
--- a/user/settings/zsh.nix
+++ b/user/settings/zsh.nix
@@ -180,6 +180,7 @@ in
       ge = "git remote";
       gr = "git rebase";
       gz = "git stash";
+      gls = "git ls-files";
       gzl = "git stash list";
       gzp = "git stash pop";
       gdt = "git difftool";