13 lines
294 B
EmacsLisp
13 lines
294 B
EmacsLisp
;;; settings.el --- .Emacs Configuration -*- lexical-binding: t; -*-
|
|
;;; Commentary:
|
|
;; custom settings!!!
|
|
|
|
;;; Code:
|
|
(setq user-full-name "LibreUser.")
|
|
(setq user-mail-address "name@domain.com")
|
|
|
|
;; Local Variables:
|
|
;; byte-compile-warnings: (not free-vars)
|
|
;; End:
|
|
;;; settings.el ends here
|