Last active
July 23, 2019 15:32
-
-
Save kurianbenoy/779f721279c26c6f49fada0c565a2cf7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(custom-set-variables | |
;; custom-set-variables was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. | |
;; Your init file should contain only one such instance. | |
;; If there is more than one, they won't work right. | |
'(inhibit-startup-screen t)) | |
(custom-set-faces | |
;; custom-set-faces was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. | |
;; Your init file should contain only one such instance. | |
;; If there is more than one, they won't work right. | |
) | |
;; -*- mode: elisp -*- | |
;; Disable the splash screen (to enable it agin, replace the t with 0) | |
(setq inhibit-splash-screen t) | |
;; Enable transient mark mode | |
(transient-mark-mode 1) | |
;;;;Org mode configuration | |
;; Enable Org mode | |
(require 'org) | |
;; Make Org mode work with files ending in .org | |
;; (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) | |
;; The above is the default in recent emacsen | |
(define-skeleton insert-org-entry | |
"Prompt for task, estimate and category" | |
nil | |
'(setq task (skeleton-read "Task: ")) | |
'(setq estimate (skeleton-read "Estimate: ")) | |
'(setq category (skeleton-read "Category: ")) | |
'(setq timestamp (format-time-string "%s")) | |
"** " task \n | |
":PROPERTIES:" \n | |
":ESTIMATED: " estimate \n | |
":ACTUAL:" \n | |
":OWNER: shaks" \n | |
":ID: " category "." timestamp \n | |
":TASKID: " category "." timestamp \n | |
":END:") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment