aboutsummaryrefslogtreecommitdiffstats
path: root/settings.el
blob: 0cc91b400e8ffb88a3d761052bc5ffc71afd506c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;;; 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