diff options
Diffstat (limited to 'shoshin-config.org')
-rw-r--r-- | shoshin-config.org | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/shoshin-config.org b/shoshin-config.org index 7f07b3c..7d4f51f 100644 --- a/shoshin-config.org +++ b/shoshin-config.org @@ -91,7 +91,9 @@ distributions may not yet have it as an available package. #+name: add-nongnu-elpa #+begin_src emacs-lisp (when (< emacs-major-version 28) - (add-to-list 'package-archives '("nongnu" . "https://elpa.nongnu.org/nongnu/"))) + (package-initialize) + (add-to-list 'package-archives '("nongnu" . "https://elpa.nongnu.org/nongnu/")) + (package-refresh-contents)) #+end_src ** Installing Packages @@ -155,6 +157,7 @@ tightly right now. you may have other opinions about keybindings #+name: keybinding #+begin_src emacs-lisp (package-install 'xah-fly-keys) + (require 'xah-fly-keys) (xah-fly-keys-set-layout "qwerty") (setq xah-fly-use-control-key nil xah-fly-use-meta-key nil) @@ -345,8 +348,10 @@ an API token is stored in my ~.authinfo~ file. ** basic Emacs UI tweaks #+begin_src emacs-lisp - (scroll-bar-mode nil) - (fringe-mode '(8 . 0)) + (unless (null window-system) + (scroll-bar-mode nil) + (fringe-mode '(8 . 0))) + (tab-bar-mode t) (display-battery-mode t) #+end_src |