diff options
author | oreodave <aryadevchavali1@gmail.com> | 2019-07-13 08:55:50 +0100 |
---|---|---|
committer | oreodave <aryadevchavali1@gmail.com> | 2019-07-13 08:55:50 +0100 |
commit | 028216e12b83d7d675a1e683496a4508271d0877 (patch) | |
tree | 95d10723e61f2f2b6430469e9d3532dd79af661c | |
parent | 1da8b83ee854ffa3f19c5547d1a8b35ebf5734fa (diff) | |
download | dotfiles-028216e12b83d7d675a1e683496a4508271d0877.tar.gz dotfiles-028216e12b83d7d675a1e683496a4508271d0877.tar.bz2 dotfiles-028216e12b83d7d675a1e683496a4508271d0877.zip |
Added interactive function to open Text/calendar.org
-rw-r--r-- | spacemacs | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -388,6 +388,13 @@ you should place your code here." (global-flycheck-mode) (global-wakatime-mode) + ;; Functions + (defun get-calendar () + "Open up the calendar scheduler" + (interactive) + (find-file "~/Text/calendar.org") + ) + ;; Keybinds (spacemacs/set-leader-keys "os" 'helm-etags-select) (spacemacs/set-leader-keys "oc" 'find-file "~/Text/calendar.org") |