some modifications to bible stuff
This commit is contained in:
parent
df7daa6851
commit
b8f7717e92
3 changed files with 114 additions and 25 deletions
35
init.el
35
init.el
|
@ -129,7 +129,6 @@
|
|||
(use-package all-the-icons)
|
||||
|
||||
(use-package doom-modeline
|
||||
:ensure t
|
||||
:init
|
||||
(doom-modeline-mode 0)
|
||||
(setq doom-modeline-height 25
|
||||
|
@ -228,12 +227,6 @@
|
|||
|
||||
(setq proced-auto-update-flag t)
|
||||
|
||||
(use-package bluetooth
|
||||
:after general
|
||||
:general
|
||||
(chris/leader-keys
|
||||
"oT" 'bluetooth-list-devices))
|
||||
|
||||
(use-package no-littering)
|
||||
|
||||
;; no-littering doesn't set this by default so we must place
|
||||
|
@ -468,7 +461,7 @@
|
|||
"ss" '(consult-line :which-key "consult search")
|
||||
"sr" '(consult-ripgrep :which-key "consult ripgrep")
|
||||
"sd" '(dictionary-search :which-key "search the dictionary")
|
||||
"sv" '(org-bible-find-verse-imenu :which-key "imenu")
|
||||
"sv" '(org-bible-jump :which-key "imenu")
|
||||
"oP" '(proced :which-key "proced")
|
||||
"ov" '(vterm :which-key "vterm")
|
||||
"wo" '(other-window :which-key "other window")
|
||||
|
@ -531,6 +524,12 @@
|
|||
"TAB" 'indent-according-to-mode
|
||||
"C-<tab>" 'indent-for-tab-command))
|
||||
|
||||
(use-package bluetooth
|
||||
:after general
|
||||
:general
|
||||
(chris/leader-keys
|
||||
"oT" 'bluetooth-list-devices))
|
||||
|
||||
(setq lpr-command "lpr -o sides=two-sided-long-edge -# ")
|
||||
(defun chris/org-mode-setup ()
|
||||
(interactive)
|
||||
|
@ -1007,7 +1006,7 @@ much faster. The hope is to also make this a faster version of imenu."
|
|||
|
||||
(use-package denote
|
||||
:config
|
||||
(require 'denote-org-dblock)
|
||||
(require 'denote-org-extras)
|
||||
(setq denote-directory "/home/chris/docs/notes"
|
||||
denote-dired-directories '("/home/chris/docs/notes")
|
||||
denote-dired-directories-include-subdirectories t
|
||||
|
@ -2453,6 +2452,11 @@ targets."
|
|||
"gh" 'paredit-backward-slurp-sexp
|
||||
"C-l" 'paredit-forward
|
||||
"C-h" 'paredit-backward)
|
||||
('normal emacs-lisp-mode-map
|
||||
"gl" 'paredit-forward-slurp-sexp
|
||||
"gh" 'paredit-backward-slurp-sexp
|
||||
"C-l" 'paredit-forward
|
||||
"C-h" 'paredit-backward)
|
||||
('normal lisp-shared-mode-map
|
||||
"gl" 'paredit-forward-slurp-sexp
|
||||
"gh" 'paredit-backward-slurp-sexp
|
||||
|
@ -2669,6 +2673,19 @@ targets."
|
|||
(use-package fennel-mode
|
||||
:mode ("\\.fnl\\'" . fennel-mode))
|
||||
|
||||
;; First install the package:
|
||||
(use-package flycheck-clj-kondo
|
||||
:ensure t)
|
||||
|
||||
;; then install the checker as soon as `clojure-mode' is loaded
|
||||
(use-package clojure-mode
|
||||
:ensure t
|
||||
:config
|
||||
(require 'flycheck-clj-kondo))
|
||||
|
||||
(use-package cider
|
||||
:after clojure-mode)
|
||||
|
||||
(use-package yaml-mode
|
||||
:mode ("\\.yml\\'" . yaml-mode))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue