From a390e8f3acca537460cdae7544af7750b70c2961 Mon Sep 17 00:00:00 2001
From: Raul Benencia <rul@kalgan.cc>
Date: Tue, 6 Jul 2021 14:33:15 -0700
Subject: sort aliases files

---
 .bashrc                        | 2 +-
 .emacs.local.d/modes/org.el    | 2 +-
 .emacs.local.d/modes/themes.el | 2 +-
 bin/padding-add                | 2 +-
 bin/padding-remove             | 2 +-
 bin/unwrap                     | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/.bashrc b/.bashrc
index 0144807..e06cbd7 100644
--- a/.bashrc
+++ b/.bashrc
@@ -54,7 +54,7 @@ fi
 
 # aliases
 if [ -e ~/.alias.d/ ]; then
-    for e in $(find ~/.alias.d/ -type l,f); do
+    for e in $(find ~/.alias.d/ -type l,f | sort); do
 	    . $e
     done
 fi
diff --git a/.emacs.local.d/modes/org.el b/.emacs.local.d/modes/org.el
index 14d32bf..6f8f111 100644
--- a/.emacs.local.d/modes/org.el
+++ b/.emacs.local.d/modes/org.el
@@ -11,7 +11,7 @@
 
 (require 'org)
 
-(setq org-agenda-files '("~/src/git/org/"))
+(setq org-agenda-files '("~/src/git/te/org/"))
 (setq org-cycle-separator-lines 0)
 (setq org-startup-indented t)
 (setq org-hide-leading-stars nil)
diff --git a/.emacs.local.d/modes/themes.el b/.emacs.local.d/modes/themes.el
index ad7e376..0a10224 100644
--- a/.emacs.local.d/modes/themes.el
+++ b/.emacs.local.d/modes/themes.el
@@ -1,4 +1,4 @@
-(load-theme 'zenburn t)
+(load-theme 'doom-spacegray t)
 (set-frame-parameter (selected-frame) 'alpha '(95 . 95))
 (add-to-list 'default-frame-alist '(alpha . (95 . 95)))
 
diff --git a/bin/padding-add b/bin/padding-add
index 04fe61a..d4a668d 100755
--- a/bin/padding-add
+++ b/bin/padding-add
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import sys
 
diff --git a/bin/padding-remove b/bin/padding-remove
index 9c5f41e..060f694 100755
--- a/bin/padding-remove
+++ b/bin/padding-remove
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import sys
 
diff --git a/bin/unwrap b/bin/unwrap
index ffcc5e1..e2058a7 100755
--- a/bin/unwrap
+++ b/bin/unwrap
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import sys
 
-- 
cgit v1.2.3