diff options
| author | yuzu-eva <stevenhu@web.de> | 2023-09-13 12:49:20 +0200 |
|---|---|---|
| committer | yuzu-eva <stevenhu@web.de> | 2023-09-13 12:49:20 +0200 |
| commit | b1648cdbeed73dfa424fbe034203178974bcd1e3 (patch) | |
| tree | d06123c96814b9e41fca6a0076c43503b646130e /config.org | |
| parent | b896028e6df749a7af399c47fbda295d1344d753 (diff) | |
fixed sbcl path; added font setting; changed switch-windown shortcuts to dvorak
Diffstat (limited to 'config.org')
| -rw-r--r-- | config.org | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -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 + |
