Skip to content

Commit

Permalink
refresh gpg
Browse files Browse the repository at this point in the history
  • Loading branch information
antipasta committed Apr 8, 2021
1 parent a224477 commit 05f8655
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
4 changes: 4 additions & 0 deletions bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -192,3 +192,7 @@ function vssh() {
}

alias sfssh='vssh -A $(sf-deploy.pl -c $(fdfind --type directory "prod|dev" $HOME/release/sf-deploy-application/application | fzf) --print_host)'

if [[ $(gpg --card-status ) ]]; then
refresh_gpga
fi
17 changes: 14 additions & 3 deletions doom.d/configuration.org
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
#'org-roam-capture--get-point
"* %?"
:file-name "daily/%<%Y-%m-%d>"
:head "#+title: %<%Y-%m-%d>\n\n#+roam_tags: journal\n\n")))
:head "#+title: %<%Y-%m-%d>\n\n#+roam_tags: journal\n\n* Tasks\n** Personal [0/0]\n** Work [0/0] :work:\n")))

; set closed time on todo close
(setq org-log-done 'time)
Expand Down Expand Up @@ -73,6 +73,7 @@
(+workspace/new)
(+workspace/rename "today")
(org-roam-dailies-find-today)
(save-buffer)
(split-window-vertically)
(other-window 1)
(org-roam-dailies-find-previous-note 1)
Expand All @@ -81,8 +82,18 @@
(previous-window-any-frame))
; custom todo states (not working)
(after! org
(setq org-todo-keywords
'((sequence "TODO" "[ ]" "NEXT" "DOING" "WAITING" "DONE" "PROJ" "|" "DONE" "[X]"))))
(setq org-todo-keywords
'(
(sequence "TODO(t)" "NEXT(n)" "DOING(s)" "WAITING(w)" "PROJ(p)" "|" "DONE(d)")
(sequence "[ ]" "|" "[X]")
)
org-todo-keyword-faces
'(("[-]" . +org-todo-active)
("DOING" . +org-todo-active)
("WAITING" . +org-todo-onhold)
("KILL" . +org-todo-cancel)))

)

#+END_SRC

Expand Down
2 changes: 1 addition & 1 deletion doom.d/custom.el
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(org-agenda-files
'("~/orgroam/20210402080921-1001_albums.org" "~/orgroam/20210403104611-todo.org" "~/orgroam/20210331083546-tv.org"))
'("~/org/roam/20210331100749-twitter_custom_audiences.org" "~/orgroam/20210402080921-1001_albums.org" "~/orgroam/20210403104611-todo.org" "~/orgroam/20210331083546-tv.org"))
'(xterm-mouse-mode t))
(custom-set-faces
;; custom-set-faces was added by Custom.
Expand Down
2 changes: 1 addition & 1 deletion tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ setw -g mode-keys vi
setw -g monitor-activity on

## Mouse stuff
#setw -g mode-mouse on
# setw -g mode-mouse on
#set-option -g mouse-select-pane on
#set-option -g mouse-select-window on

Expand Down

0 comments on commit 05f8655

Please sign in to comment.