Parcourir la source

[emacs] Update fonts

Colin Powell il y a 3 ans
Parent
commit
98ecfbf9e8
2 fichiers modifiés avec 18 ajouts et 5 suppressions
  1. 2 0
      .gitignore
  2. 16 5
      emacs/.config/doom/config.org

+ 2 - 0
.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

+ 16 - 5
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