summaryrefslogtreecommitdiff
path: root/emacs/inits/20-programming.el
diff options
context:
space:
mode:
authortslil <tslil@posteo.de>2026-08-25 15:25:32 +0100
committertslil <tslil@posteo.de>2026-08-25 15:31:42 +0100
commit19839d3067c8bd779fc05eb0f355564b232329b3 (patch)
tree1f12a4b5f117a762d9418f6d9f81d9a3bf4ff743 /emacs/inits/20-programming.el
parentf0838ce7e11af2e16e47806355ff76707bc5cbc1 (diff)
[emacs] lexical binding i guess
Diffstat (limited to 'emacs/inits/20-programming.el')
-rw-r--r--emacs/inits/20-programming.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/emacs/inits/20-programming.el b/emacs/inits/20-programming.el
index e8ae9b5..e7385ba 100644
--- a/emacs/inits/20-programming.el
+++ b/emacs/inits/20-programming.el
@@ -1,4 +1,6 @@
-;; Time-stamp: <2026-07-31 11h59 BST (51019882)>
+;;; -*- lexical-binding: t -*-
+
+;; Time-stamp: <2026-08-15 16h16 BST (7b97f8ba)>
;; -----------------------------------------------------------------------------
;; General setup
@@ -68,9 +70,7 @@
(electric-pair-local-mode)
(set-fill-column 80)
(display-line-numbers-mode 1)
- (when (not (eq major-mode 'text-mode))
- (hs-minor-mode))
- (setq auto-hscroll-mode t)
+ (visual-line-mode 1)
(when (not (eq major-mode 'python-ts-mode))
(keymap-set (current-local-map) "M-/" 'completion-at-point))
)