diff options
author | Raul Benencia <rul@kalgan.cc> | 2021-07-06 14:33:15 -0700 |
---|---|---|
committer | Raul Benencia <rul@kalgan.cc> | 2021-07-06 14:33:55 -0700 |
commit | a390e8f3acca537460cdae7544af7750b70c2961 (patch) | |
tree | 76518a3ed916bc2a6f047a03b9554ff29f931f8d | |
parent | e47eacc019284efefac2f1d9fc99462ddcd7ea47 (diff) |
sort aliases files
-rw-r--r-- | .bashrc | 2 | ||||
-rw-r--r-- | .emacs.local.d/modes/org.el | 2 | ||||
-rw-r--r-- | .emacs.local.d/modes/themes.el | 2 | ||||
-rwxr-xr-x | bin/padding-add | 2 | ||||
-rwxr-xr-x | bin/padding-remove | 2 | ||||
-rwxr-xr-x | bin/unwrap | 2 |
6 files changed, 6 insertions, 6 deletions
@@ -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 @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import sys |