From b1648cdbeed73dfa424fbe034203178974bcd1e3 Mon Sep 17 00:00:00 2001 From: yuzu-eva Date: Wed, 13 Sep 2023 12:49:20 +0200 Subject: fixed sbcl path; added font setting; changed switch-windown shortcuts to dvorak --- config.org | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'config.org') diff --git a/config.org b/config.org index 3c22b2c..ca13931 100644 --- a/config.org +++ b/config.org @@ -112,6 +112,12 @@ on some major modes rather than globally (setq scroll-conservatively 100) #+end_src +*** Set font + +#+begin_src emacs-lisp + (set-face-attribute 'default nil :font "Hack Nerd Font" :height 110) +#+end_src + *** Set initial buffer to dashboard #+begin_src emacs-lisp (setq initial-buffer-choice (lambda () (get-buffer-create "*dashboard*"))) @@ -563,7 +569,7 @@ Better way to switch windows (setq switch-window-threshold 2) (setq switch-window-shortcut-style 'qwerty) (setq switch-window-qwerty-shortcuts - '("a" "s" "d" "f" "h" "j" "k" "l")) + '("a" "o" "e" "u" "h" "t" "n" "s")) :bind ([remap other-window] . switch-window)) #+end_src @@ -632,7 +638,7 @@ Sly REPL #+begin_src emacs-lisp (use-package sly :ensure t) - (setq inferior-lisp-program "/usr/bin/sbcl") + (setq inferior-lisp-program "/usr/local/bin/sbcl") #+end_src ** Initialize =sudo-edit= @@ -737,3 +743,4 @@ Some keybinds to make life easier #+begin_src emacs-lisp (global-set-key (kbd "C-c f") 'recentf-open-files) #+end_src + -- cgit v1.2.3