From 98ecfbf9e8747d36eff96774bcb4c18f754e947a Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Tue, 4 Jan 2022 12:46:41 -0500 Subject: [PATCH] [emacs] Update fonts --- .gitignore | 2 ++ emacs/.config/doom/config.org | 21 ++++++++++++++++----- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index c1693b1..feb263a 100644 --- a/.gitignore +++ b/.gitignore @@ -60,3 +60,5 @@ fish/.config/fish/functions/tide/configure/configs/lean_16color.fish fish/.config/fish/functions/tide/configure/configs/rainbow.fish fish/.config/fish/functions/tide/configure/configs/rainbow_16color.fish _fake* +fish/.config/fish/conf.d/virtualfish-loader.fish +fish/.config/fish/functions/fzf_key_bindings.fish diff --git a/emacs/.config/doom/config.org b/emacs/.config/doom/config.org index e18aebf..5794400 100644 --- a/emacs/.config/doom/config.org +++ b/emacs/.config/doom/config.org @@ -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