12 lines
307 B
EmacsLisp
12 lines
307 B
EmacsLisp
;;; settings.el --- .Emacs Configuration -*- lexical-binding: t; -*-
|
|
;;; Commentary:
|
|
;; custom settings!!!
|
|
|
|
;;; Code:
|
|
(setq user-full-name (getenv "EMACS_USER"))
|
|
(setq user-mail-address (getenv "EMACS_EMAIL"))
|
|
;; Local Variables:
|
|
;; byte-compile-warnings: (not free-vars)
|
|
;; End:
|
|
;;; settings.el ends here
|