diff options
-rw-r--r-- | dotfiles/.bash_profile | 2 | ||||
-rw-r--r-- | dotfiles/.emacs.d/init.el | 10 | ||||
-rw-r--r-- | dotfiles/.ssh/config | 25 |
3 files changed, 8 insertions, 29 deletions
diff --git a/dotfiles/.bash_profile b/dotfiles/.bash_profile index cfbd21e..7b48ac7 100644 --- a/dotfiles/.bash_profile +++ b/dotfiles/.bash_profile @@ -31,5 +31,3 @@ fi export PATH="$HOME/.config/guix/current/bin${PATH:+:}$PATH" export AWS_REGION="us-east-1" -export CFN_ROLE_ARN="arn:aws:iam::097392476160:role/iam-production-CloudformationServiceRole-1OZCORE3R6EZ9" -export SLACK_TOKEN="xoxp-4376114194-5187822990-220986355462-5cf39430c2189530252249bf9746d480" diff --git a/dotfiles/.emacs.d/init.el b/dotfiles/.emacs.d/init.el index 6311ecd..822961c 100644 --- a/dotfiles/.emacs.d/init.el +++ b/dotfiles/.emacs.d/init.el @@ -356,8 +356,14 @@ indentation." (defun org-sort-by-priority-and-todo () "Sort org entries first by priority, and then by TODO status." (interactive) - (org-sort-entries nil ?p) - (org-sort-entries nil ?o)) + (push-mark) + (push-mark (point-max) nil t) + (lexical-let ((p (point))) + (goto-char (point-min)) + (org-sort-entries nil ?p) + (org-sort-entries nil ?o) + (goto-char p)) + (pop-mark)) (add-hook 'org-mode-hook (lambda () diff --git a/dotfiles/.ssh/config b/dotfiles/.ssh/config index cfd9282..9a16ff1 100644 --- a/dotfiles/.ssh/config +++ b/dotfiles/.ssh/config @@ -24,24 +24,9 @@ Host vhltunnel User dthompson ForwardAgent yes -Host chef - HostName 10.0.249.202 - User ubuntu - Host gitlab.vhlcentral.com ProxyCommand ssh hydra -W 38.88.209.21:22 -Host 10.0.* - ServerAliveInterval 60 - -Host calypso - HostName 10.30.250.42 - ProxyCommand ssh aws-prod -W %h:22 - -Host berkshelf - HostName 10.0.250.212 - User ubuntu - Host aws-prod HostName virginia-bastion.maestro.vhlcentral.com ForwardAgent yes @@ -83,13 +68,3 @@ Host 10.60.* Host 10.61.* ProxyCommand ssh aws-mumbai-dev -W %h:22 ForwardAgent yes - -Host ldap-production - HostName 10.30.14.1 - ProxyCommand ssh bastion16.maestro.vhlcentral.com -W %h:22 - -Host bastion-recovery - HostName 10.30.51.105 - User ubuntu - ProxyCommand ssh aws-prod -W %h:22 - IdentityFile /home/dthompson/.ssh/aws |