16 lines
400 B
EmacsLisp
16 lines
400 B
EmacsLisp
;;; settings.el --- .Emacs Configuration -*- lexical-binding: t -*-
|
|
;;; Commentary:
|
|
|
|
;;; Code:
|
|
|
|
(setq user-full-name "Jesús E.")
|
|
(setq user-mail-address "heckyel@hyperbola.info")
|
|
(set-language-environment "UTF-8")
|
|
(prefer-coding-system 'utf-8)
|
|
(setq-default buffer-file-coding-system 'utf-8-auto-unix)
|
|
|
|
;; Local Variables:
|
|
;; byte-compile-warnings: (not free-vars)
|
|
;; End:
|
|
;;; settings.el ends here
|