Browse Source

[emacs] Update fonts

Colin Powell 3 years ago
parent
commit
98ecfbf9e8
2 changed files with 18 additions and 5 deletions
  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.fish
 fish/.config/fish/functions/tide/configure/configs/rainbow_16color.fish
 fish/.config/fish/functions/tide/configure/configs/rainbow_16color.fish
 _fake*
 _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.
 for it's retro charm. Nimbus just doesn't look great when I'm tired though.
 #+BEGIN_SRC emacs-lisp
 #+BEGIN_SRC emacs-lisp
 (setq doom-theme 'farmhouse-dark
 (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
 #+END_SRC
 ** Borders
 ** Borders
 Barring the unfortunate end of X11 development and my eventual transition to
 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!
   (set-eshell-alias!
    "djtest" "DJANGO_SETTINGS_MODULE=ff.settings.ci python manage.py test $*"
    "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 $*"
    "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"
    "f"     "(other-window 1) && find-file $1"
    "l"     "ls -lh"
    "l"     "ls -lh"
    "d"     "dired $1"
    "d"     "dired $1"
@@ -426,7 +426,18 @@ projects without warning us everytime.
         lsp-completion-show-detail 1
         lsp-completion-show-detail 1
         lsp-file-watch-threshold nil
         lsp-file-watch-threshold nil
    )
    )
+
 #+END_SRC
 #+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
 * Mastodon
 There's gotta be a way to get the token out of password-store for this.
 There's gotta be a way to get the token out of password-store for this.
 #+BEGIN_SRC emacs-lisp
 #+BEGIN_SRC emacs-lisp