mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-13 23:51:34 +09:00
11 lines
403 B
EmacsLisp
11 lines
403 B
EmacsLisp
;;; init-const.el -*- lexical-binding: t -*-
|
|
(defconst ON-LINUX (eq system-type 'gnu/linux)
|
|
"Under Linux system")
|
|
(defconst ON-WINDOWS (memq system-type '(cygwin windows-nt ms-dos))
|
|
"Under Windows System")
|
|
(defconst custom-default-file
|
|
(expand-file-name "custom-default.el" user-emacs-directory))
|
|
(setq custom-file (expand-file-name "custom.el" user-emacs-directory))
|
|
|
|
(provide 'init-const)
|