.emacs.d

the most bloated Emacs config on this planet
git clone https://git.trogloxene.org/.emacs.d.git
Log | Files | Refs

init-const.el (394B)


      1 ;;; init-const.el --- constant and system stuff -*- lexical-binding: t -*-
      2 
      3 ;;; Commentary:
      4 
      5 ;;; Code:
      6 
      7 (defconst *is-mac* (eq system-type 'darwin))
      8 (defconst *is-linux* (eq system-type 'gnu/linux))
      9 (defconst *is-windows* (or (eq system-type 'ms-dos) (eq system-type 'windows-nt)))
     10 (defconst *is-android* (if (getenv "TERMUX_VERSION") t nil))
     11 
     12 (provide 'init-const)
     13 ;;; init-const.el ends here