Compare commits

..

No commits in common. "8bd4d2837a0d957adf576babbedb0ccbad6df69a" and "3ea56aefe8e6713e63fa0d494bd05e1478fd9fd8" have entirely different histories.

2 changed files with 15 additions and 16 deletions

View File

@ -332,7 +332,7 @@ If the current window occupies the whole frame, split it."
;; do the things
(add-hook 'server-after-make-frame-hook #'mir/graphical-setup)
(if (display-graphic-p)
(add-hook 'elpaca-after-init-hook #'mir/graphical-setup)
(add-hook 'init-hook #'mir/graphical-setup)
;; (add-hook 'after-init-hook #'mir/graphical-setup)
)

View File

@ -40,7 +40,7 @@ declarations for color schemes."
:family "MesloLGS Nerd Font")
(set-face-attribute 'variable-pitch nil
:inherit 'default
:family "Ubuntu Nerd Font Medium"
:family "Ubuntu"
:height 140) ;jank? jank
(setq window-divider-default-places t)
(setq right-divider-width 5)
@ -59,7 +59,7 @@ declarations for color schemes."
This prevents errors in termux and speeds up init when editing from the
console."
;; hide gui scrollbars and menubar etc
;; (scroll-bar-mode -1) ;; use `yascroll' instead
(scroll-bar-mode -1) ;; use `yascroll' instead
(setq scroll-bar-adjust-thumb-portion nil)
(tool-bar-mode 0)
(menu-bar-mode 0)
@ -72,19 +72,18 @@ console."
(pixel-scroll-precision-mode t)
(pixel-scroll-mode t))
;; Size of text. おまえ わ もう しんでいる.
;; (if (executable-find "neofetch")
;; (let* ((resolution (mapcar #'string-to-number
;; (split-string
;; (cadr (split-string
;; (shell-command-to-string
;; "neofetch resolution"))) "x")))
;; (resx (car resolution))
;; (resy (cadr resolution))
;; (font-height (/ resy 11)))
;; (set-face-attribute 'fixed-pitch nil :height font-height)
;; (set-face-attribute 'default nil :height font-height)
;; (set-face-attribute 'variable-pitch nil :height (+ font-height 10))))
)
(if (executable-find "neofetch")
(let* ((resolution (mapcar #'string-to-number
(split-string
(cadr (split-string
(shell-command-to-string
"neofetch resolution"))) "x")))
(resx (car resolution))
(resy (cadr resolution))
(font-height (/ resy 11)))
(set-face-attribute 'fixed-pitch nil :height font-height)
(set-face-attribute 'default nil :height font-height)
(set-face-attribute 'variable-pitch nil :height (+ font-height 10)))))
(defun toggle-ja-input ()
"Switch between english and japanese. Not broken."