some modifications to bible stuff

This commit is contained in:
Chris Cochrun 2024-06-21 11:19:49 -05:00
parent df7daa6851
commit b8f7717e92
3 changed files with 114 additions and 25 deletions

View file

@ -12,10 +12,10 @@ Date: Sat, 27 Apr 2024 22:36:33 -0500
- [[#fix-nixos][Fix NixOS]]
- [[#spell-check][Spell Check]]
- [[#proced][Proced]]
- [[#bluetooth][Bluetooth]]
- [[#keep-folders-clean][Keep Folders Clean]]
- [[#ligatures][Ligatures]]
- [[#keybindings][Keybindings]]
- [[#bluetooth][Bluetooth]]
- [[#org-mode][Org Mode]]
- [[#ai][AI]]
- [[#jinx][Jinx]]
@ -309,7 +309,6 @@ All the icons is super pretty and needed for doom-modeline.
Probably the prettiest and best modeline I've found.
#+begin_src emacs-lisp
(use-package doom-modeline
:ensure t
:init
(doom-modeline-mode 0)
(setq doom-modeline-height 25
@ -464,16 +463,6 @@ Let's turn auto update on for proced
(setq proced-auto-update-flag t)
#+end_src
** Bluetooth
I think I like this interface to controlling bluetooth the most
#+begin_src emacs-lisp
(use-package bluetooth
:after general
:general
(chris/leader-keys
"oT" 'bluetooth-list-devices))
#+end_src
** Keep Folders Clean
Let's use =no-littering= in order to stop emacs from filling all our folders with junk.
@ -739,7 +728,7 @@ This evil-collection package includes a lot of other evil based things.
"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")
@ -803,6 +792,16 @@ This evil-collection package includes a lot of other evil based things.
"C-<tab>" 'indent-for-tab-command))
#+end_src
** Bluetooth
I think I like this interface to controlling bluetooth the most
#+begin_src emacs-lisp
(use-package bluetooth
:after general
:general
(chris/leader-keys
"oT" 'bluetooth-list-devices))
#+end_src
** Org Mode
Org-Mode needs to be loaded pretty high in the file so that we are ensuring things get picked up in the correct order. This has been a problem for me in the past so I prefer it right after setting some keybindings and then much later loading things like =roam= =super-agenda= and others.
@ -1458,7 +1457,7 @@ I might try switching to and using denote instead of Org Roam. Denote doesn't us
#+begin_src emacs-lisp
(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
@ -3307,6 +3306,11 @@ Also here are some lisp specific stuff
"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
@ -3646,7 +3650,7 @@ Friar is a fennel repl in the awesome repl. It allows you to interact with Aweso
#+end_src
*** Clojure
I'm gonnna dabble in using clojure for the website
#+begin_src emacs-lisp :tangle no
#+begin_src emacs-lisp
;; First install the package:
(use-package flycheck-clj-kondo
:ensure t)