|
@@ -19,9 +19,9 @@ to Doom One most of the time, but I like the Kaolin themes, as well as Nimbus
|
|
|
for it's retro charm. Nimbus just doesn't look great when I'm tired though.
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
(setq doom-theme 'farmhouse-dark
|
|
|
- doom-font (font-spec :family "Go Mono" :size 13 :weight 'regular)
|
|
|
- doom-big-font (font-spec :family "Go Mono" :size 16 :weight 'regular)
|
|
|
- doom-variable-pitch-font (font-spec :family "Overpass" :size 13))
|
|
|
+ doom-font (font-spec :family "FuraCode Nerd Font Mono" :size 12 :weight 'regular)
|
|
|
+ doom-big-font (font-spec :family "JetBrains Mono" :size 16 :weight 'regular)
|
|
|
+ doom-variable-pitch-font (font-spec :family "Overpass" :size 12))
|
|
|
#+END_SRC
|
|
|
** Borders
|
|
|
Barring the unfortunate end of X11 development and my eventual transition to
|
|
@@ -404,8 +404,8 @@ Handful of fun aliases to make working in Eshell almost like a /real/ shell :smi
|
|
|
(set-eshell-alias!
|
|
|
"djtest" "DJANGO_SETTINGS_MODULE=ff.settings.ci python manage.py test $*"
|
|
|
"djpytest" "DJANGO_SETTINGS_MODULE=ff.settings.ci pytest --reuse-db --black --flake8 --isort --durations=3 $*"
|
|
|
- "djsh" "DJANGO_SETTINGS_MODULE=ff.settings.ci python manage.py shell_plus"
|
|
|
- "dj" "DJANGO_SETTINGS_MODULE=ff.settings.ci python manage.py $*"
|
|
|
+ "ffsh" "python ~/src/github.com/15five/fifteen5/manage.py shell_plus"
|
|
|
+ "ffdev" "ssh dev-ff.local "
|
|
|
"f" "(other-window 1) && find-file $1"
|
|
|
"l" "ls -lh"
|
|
|
"d" "dired $1"
|
|
@@ -426,7 +426,18 @@ projects without warning us everytime.
|
|
|
lsp-completion-show-detail 1
|
|
|
lsp-file-watch-threshold nil
|
|
|
)
|
|
|
+
|
|
|
#+END_SRC
|
|
|
+#+begin_src emacs-lisp
|
|
|
+ (use-package lsp-mode
|
|
|
+ :commands lsp
|
|
|
+ :ensure t
|
|
|
+ :diminish lsp-mode
|
|
|
+ :hook
|
|
|
+ (elixir-mode . lsp)
|
|
|
+ :init
|
|
|
+ (add-to-list 'exec-path "~/.emacs.d/var/elixir-ls"))
|
|
|
+#+end_src
|
|
|
* Mastodon
|
|
|
There's gotta be a way to get the token out of password-store for this.
|
|
|
#+BEGIN_SRC emacs-lisp
|