aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shoshin-config.el11
-rw-r--r--shoshin-config.org11
2 files changed, 16 insertions, 6 deletions
diff --git a/shoshin-config.el b/shoshin-config.el
index f14c432..33c7504 100644
--- a/shoshin-config.el
+++ b/shoshin-config.el
@@ -2,7 +2,9 @@
;;; Package Management
(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))
(when (and (functionp #'native-comp-available-p) (native-comp-available-p))
(setq native-comp-always-compile t
@@ -10,6 +12,7 @@
;;; Major Keybinding
(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)
@@ -70,8 +73,10 @@
(setq srht-username "shoshin")
;;; User Interface
-(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)
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