summaryrefslogtreecommitdiff
path: root/emacs/init.el
diff options
context:
space:
mode:
authortslil <tslil@posteo.de>2026-04-14 10:52:23 +0100
committertslil <tslil@posteo.de>2026-04-14 10:53:10 +0100
commitb6d206a9260f041648eb5fd9a508eff292a5260a (patch)
tree73e92fd3f48528e12f9e982ea66dc4984e31f270 /emacs/init.el
parent30cc644182e61031ceaf5c665deed4ffa98db311 (diff)
[emacs] use treesit-fold instead of hideshow, add nongnu elpa
Diffstat (limited to 'emacs/init.el')
-rw-r--r--emacs/init.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 25656e4..f30bdd8 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -1,8 +1,8 @@
-;; Time-stamp: <2023-01-05 21h26 CET (anker)>
+;; Time-stamp: <2026-04-14 10h29 BST (0eb6df5e)>
(setq user-full-name "tslil")
-(setq network-security-level 'high)
+;; (setq network-security-level 'high)
(setq native-comp-deferred-compilation t)
@@ -10,6 +10,7 @@
(setq package-enable-at-startup nil
load-prefer-newer t
package-archives '(("gnu" . "https://elpa.gnu.org/packages/")
+ ("nongnu" . "https://elpa.nongnu.org/nongnu/")
("melpa" . "https://melpa.org/packages/")))
(package-initialize)
@@ -25,10 +26,10 @@
:ensure t
:demand
:config
- (setq init-loader-byte-compile nil)
+ (setq init-loader-show-log-after-init nil)
(init-loader-load))
-(setq custom-file "~/.emacs.d/custom.el")
+(setq custom-file "~/.config/emacs/custom.el")
(unless (file-exists-p custom-file)
(write-region "" nil custom-file))
(load custom-file)