aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2019-01-26 00:44:21 -0800
committerGravatar Tom Willemse2019-01-26 00:44:21 -0800
commitb1346b16702f5ebc248970fdfca1ec8481520817 (patch)
tree40768749f8d51814ae086645fbb855d4b0b0c794
parent1d46ce19113ed6d02523c59a638c50704b024e6a (diff)
downloademacs-config-b1346b16702f5ebc248970fdfca1ec8481520817.tar.gz
emacs-config-b1346b16702f5ebc248970fdfca1ec8481520817.zip
Add ‘oni-typography’
-rw-r--r--oni-typography.el39
1 files changed, 39 insertions, 0 deletions
diff --git a/oni-typography.el b/oni-typography.el
new file mode 100644
index 0000000..82b6bfe
--- /dev/null
+++ b/oni-typography.el
@@ -0,0 +1,39 @@
+;;; oni-typography.el --- Typographic settings -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2019 Tom Willemse
+
+;; Author: Tom Willemse <tom@ryuslash.org>
+;; Keywords: local
+;; Version: 20190126000657
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; Typographic settings.
+
+;;; Code:
+
+(setq require-final-newline t)
+
+(setq-default indent-tabs-mode nil)
+
+(setq-default tab-width 4)
+
+(setq sentence-end-double-space nil)
+
+(setq-default truncate-lines t)
+
+(provide 'oni-typography)
+;;; oni-typography.el ends here