diff options
| author | benj <benj@rse8.com> | 2018-03-12 10:28:33 -0700 |
|---|---|---|
| committer | benj <benj@rse8.com> | 2018-03-12 10:28:33 -0700 |
| commit | b7f46055c7e3cf0a465067d9148e8042da2b033a (patch) | |
| tree | 1824ed158cfcb3b981a2edbaa1bfa646612a2cb8 /settings | |
| parent | 013801a9d3630c6a12a6cc2b04f657f0bcee4a5a (diff) | |
| download | emacs-b7f46055c7e3cf0a465067d9148e8042da2b033a.tar emacs-b7f46055c7e3cf0a465067d9148e8042da2b033a.tar.gz emacs-b7f46055c7e3cf0a465067d9148e8042da2b033a.tar.bz2 emacs-b7f46055c7e3cf0a465067d9148e8042da2b033a.tar.lz emacs-b7f46055c7e3cf0a465067d9148e8042da2b033a.tar.xz emacs-b7f46055c7e3cf0a465067d9148e8042da2b033a.tar.zst emacs-b7f46055c7e3cf0a465067d9148e8042da2b033a.zip | |
Added default behavior to emacs gui: C-x C-c => open ansi-term buffer
Diffstat (limited to 'settings')
| -rw-r--r-- | settings/sane-defaults.el | 5 | ||||
| -rw-r--r-- | settings/setup-org-mode.el | 16 |
2 files changed, 21 insertions, 0 deletions
diff --git a/settings/sane-defaults.el b/settings/sane-defaults.el index c561381..fa4ca8e 100644 --- a/settings/sane-defaults.el +++ b/settings/sane-defaults.el @@ -10,6 +10,11 @@ ;; setup eval elsip (define-key global-map (kbd "C-x C-e") 'eval-last-sexp) +;; define browsers +(define-key global-map (kbd "C-x w") 'browse-url-emacs) +(define-key global-map (kbd "C-x w") 'browse-url-emacs) +(define-key global-map (kbd "C-x M-w") 'browse-url-chromium) + ;; Also auto refresh dired, but be quiet about it (setq global-auto-revert-non-file-buffers t) (setq auto-revert-verbose nil) diff --git a/settings/setup-org-mode.el b/settings/setup-org-mode.el index fe6f944..ff93336 100644 --- a/settings/setup-org-mode.el +++ b/settings/setup-org-mode.el @@ -5,6 +5,22 @@ (setq org-log-done 'time) (setq org-src-fontify-natively t) (setq org-src-tab-acts-natively t) +(setq org-todo-keywords + '((sequence "TODO" "IN-PROGRESS" "BLOCKED" "DONE"))) +(setq org-tag-alist + '((:startgroup . nil) + ("blocker" . ?b) + ("!critical" . ?u) + ("!major" . ?m) + ("!minor" . ?n) + ("!trivial" . ?t) + (:endgroup . nil) + ("@home" . ?h) + ("@store" . ?s) + ("@work" . ?w) + ("reading" . ?r) + ("studying" . ?s) + ("implementation" . ?i))) (global-set-key (kbd "C-c a") 'org-agenda) |
