Compare commits
No commits in common. "cd7de3db22305e0b65c5877b041d584d5530d5fa" and "d662a31e5afa4f870affee3ac33859d382a7aba5" have entirely different histories.
cd7de3db22
...
d662a31e5a
@ -43,12 +43,12 @@
|
|||||||
(clojurec-mode . cider-mode))
|
(clojurec-mode . cider-mode))
|
||||||
:config
|
:config
|
||||||
(evil-collection-cider-setup)
|
(evil-collection-cider-setup)
|
||||||
(general-def cider-mode-map "C-c t" cider-test-commands-map)
|
|
||||||
(general-def cider--debug-mode-map "," cider--debug-mode-map)
|
|
||||||
:general
|
:general
|
||||||
(cider-stacktrace-mode-map "SPC" leader-map)
|
(cider-stacktrace-mode-map "SPC" leader-map)
|
||||||
(normal cider-mode-map "M-." #'cider-find-var)
|
(normal cider-mode-map "M-." #'cider-find-var)
|
||||||
(cider-mode-map "C-c M-b" #'cider-debug-defun-at-point)
|
(cider-mode-map "C-c t" cider-test-commands-map
|
||||||
(cider-repl-mode-map "C-c C-l" #'cider-repl-clear-buffer))
|
"C-c M-b" #'cider-debug-defun-at-point)
|
||||||
|
(cider-repl-mode-map "C-c C-l" #'cider-repl-clear-buffer)
|
||||||
|
(normal cider--debug-mode-map "," cider--debug-mode-map))
|
||||||
|
|
||||||
(provide 'init-clojure)
|
(provide 'init-clojure)
|
||||||
|
@ -9,8 +9,6 @@
|
|||||||
|
|
||||||
;; "pair" management, where pairs are parentheses, braces, etc.
|
;; "pair" management, where pairs are parentheses, braces, etc.
|
||||||
(use-package smartparens
|
(use-package smartparens
|
||||||
:init
|
|
||||||
(leader-def-key "s" '(nil :which-key "smartparens"))
|
|
||||||
:config
|
:config
|
||||||
(require 'smartparens-config)
|
(require 'smartparens-config)
|
||||||
(smartparens-global-mode)
|
(smartparens-global-mode)
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
;; -*- lexical-binding: t; -*-
|
;; -*- lexical-binding: t; -*-
|
||||||
;; Helper packages
|
;; Helper packages
|
||||||
(use-package deferred
|
(use-package deferred
|
||||||
:commands (deferred:next
|
(:commands (deferred:next
|
||||||
deferred:nextc
|
deferred:nextc
|
||||||
deferred:error
|
deferred:error
|
||||||
deferred:cancel
|
deferred:cancel
|
||||||
@ -28,7 +28,7 @@
|
|||||||
deferred:errorback-post
|
deferred:errorback-post
|
||||||
deferred:try
|
deferred:try
|
||||||
deferred:timeout
|
deferred:timeout
|
||||||
deferred:process))
|
deferred:process)))
|
||||||
|
|
||||||
(use-package s
|
(use-package s
|
||||||
:defer t)
|
:defer t)
|
||||||
|
@ -47,15 +47,14 @@
|
|||||||
;; Nuke the header keybindings
|
;; Nuke the header keybindings
|
||||||
(setq org-super-agenda-header-map (make-sparse-keymap))
|
(setq org-super-agenda-header-map (make-sparse-keymap))
|
||||||
:custom
|
:custom
|
||||||
(org-super-agenda-groups `((:name "In progress"
|
(org-super-agenda-groups '((:name "In progress"
|
||||||
:todo "IN PROGRESS")
|
:todo "IN PROGRESS")
|
||||||
(:name "Lola"
|
(:name "Lola"
|
||||||
:tag "@lola")
|
:tag "@lola")
|
||||||
(:name "unifyDB"
|
(:name "unifyDB"
|
||||||
:tag "@unifydb")
|
:tag "@unifydb")
|
||||||
(:name "Personal"
|
(:name "Personal"
|
||||||
:tag "@personal")
|
:tag "@personal"))))
|
||||||
(:name "Jira" :file-path ))))
|
|
||||||
|
|
||||||
(use-package org-gcal
|
(use-package org-gcal
|
||||||
:commands (org-gcal-sync
|
:commands (org-gcal-sync
|
||||||
@ -84,18 +83,4 @@
|
|||||||
,(expand-file-name "~/org/j-n-gcal.org")))
|
,(expand-file-name "~/org/j-n-gcal.org")))
|
||||||
org-gcal-notify-p nil))
|
org-gcal-notify-p nil))
|
||||||
|
|
||||||
(use-package org-jira
|
|
||||||
:after (org)
|
|
||||||
:init
|
|
||||||
(setq jiralib-url "https://lola.atlassian.net"
|
|
||||||
org-jira-working-dir (expand-file-name "~/org/jira")
|
|
||||||
org-jira-jira-status-to-org-keyword-alist '(("To Do" . "TODO")
|
|
||||||
("Blocked" . "BLOCKED")
|
|
||||||
("In Progress" . "IN PROGRESS")
|
|
||||||
("Code Review" . "IN PROGRESS")
|
|
||||||
("Awaiting Release" . "IN PROGRESS")
|
|
||||||
("Done" . "DONE")
|
|
||||||
("Won't Fix" . "CANCELLED")))
|
|
||||||
(add-to-list 'org-agenda-files org-jira-working-dir))
|
|
||||||
|
|
||||||
(provide 'init-org)
|
(provide 'init-org)
|
||||||
|
Loading…
Reference in New Issue
Block a user