Compare commits
2 Commits
d662a31e5a
...
cd7de3db22
Author | SHA1 | Date | |
---|---|---|---|
|
cd7de3db22 | ||
|
bb4005de74 |
@ -43,12 +43,12 @@
|
||||
(clojurec-mode . cider-mode))
|
||||
:config
|
||||
(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
|
||||
(cider-stacktrace-mode-map "SPC" leader-map)
|
||||
(normal cider-mode-map "M-." #'cider-find-var)
|
||||
(cider-mode-map "C-c t" cider-test-commands-map
|
||||
"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))
|
||||
(cider-mode-map "C-c M-b" #'cider-debug-defun-at-point)
|
||||
(cider-repl-mode-map "C-c C-l" #'cider-repl-clear-buffer))
|
||||
|
||||
(provide 'init-clojure)
|
||||
|
@ -9,6 +9,8 @@
|
||||
|
||||
;; "pair" management, where pairs are parentheses, braces, etc.
|
||||
(use-package smartparens
|
||||
:init
|
||||
(leader-def-key "s" '(nil :which-key "smartparens"))
|
||||
:config
|
||||
(require 'smartparens-config)
|
||||
(smartparens-global-mode)
|
||||
|
@ -1,7 +1,7 @@
|
||||
;; -*- lexical-binding: t; -*-
|
||||
;; Helper packages
|
||||
(use-package deferred
|
||||
(:commands (deferred:next
|
||||
:commands (deferred:next
|
||||
deferred:nextc
|
||||
deferred:error
|
||||
deferred:cancel
|
||||
@ -28,7 +28,7 @@
|
||||
deferred:errorback-post
|
||||
deferred:try
|
||||
deferred:timeout
|
||||
deferred:process)))
|
||||
deferred:process))
|
||||
|
||||
(use-package s
|
||||
:defer t)
|
||||
|
@ -47,14 +47,15 @@
|
||||
;; Nuke the header keybindings
|
||||
(setq org-super-agenda-header-map (make-sparse-keymap))
|
||||
:custom
|
||||
(org-super-agenda-groups '((:name "In progress"
|
||||
(org-super-agenda-groups `((:name "In progress"
|
||||
:todo "IN PROGRESS")
|
||||
(:name "Lola"
|
||||
:tag "@lola")
|
||||
(:name "unifyDB"
|
||||
:tag "@unifydb")
|
||||
(:name "Personal"
|
||||
:tag "@personal"))))
|
||||
:tag "@personal")
|
||||
(:name "Jira" :file-path ))))
|
||||
|
||||
(use-package org-gcal
|
||||
:commands (org-gcal-sync
|
||||
@ -83,4 +84,18 @@
|
||||
,(expand-file-name "~/org/j-n-gcal.org")))
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user