summaryrefslogtreecommitdiff
path: root/emacs.el
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-14 11:17:09 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-14 11:17:09 +0100
commitc3ef1325630c4de1067bfc0fdbff3a36d8bd1d95 (patch)
treefa7672eb3693587113865dcef996769bfa748355 /emacs.el
parent6e6b275c8982856fcbfbf6c2e7ff28f8e34f02dd (diff)
Emacs: enable a line at column 80
Diffstat (limited to 'emacs.el')
-rw-r--r--emacs.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs.el b/emacs.el
index 2ef6b4b..28154a5 100644
--- a/emacs.el
+++ b/emacs.el
@@ -89,3 +89,7 @@
;;; Startup Screen Inhibition
(setq inhibit-startup-screen
t)
+
+;; Enable the column-80 line
+(global-display-fill-column-indicator-mode 1)
+(setq-default display-fill-column-indicator-column 79)