summaryrefslogtreecommitdiff
path: root/emacs/custom/my-settings.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-02-05 14:06:44 -0800
committerFranck Cuny <franck@fcuny.net>2023-02-05 14:06:44 -0800
commit190e24d5f633ce9c7c44f8a8d9d9cb20c31244a0 (patch)
tree8a2e0da2e7bd1dd5a54c726f231d89d2fbaed52b /emacs/custom/my-settings.el
parentelfeed: one more feed (diff)
downloademacs.d-190e24d5f633ce9c7c44f8a8d9d9cb20c31244a0.tar.gz
ref(misc): set location of some files
Change-Id: I201e804aeee3d579350b9efcf2680595ae8cf047
Diffstat (limited to 'emacs/custom/my-settings.el')
-rw-r--r--emacs/custom/my-settings.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/emacs/custom/my-settings.el b/emacs/custom/my-settings.el
index 39140a3..b17f4a6 100644
--- a/emacs/custom/my-settings.el
+++ b/emacs/custom/my-settings.el
@@ -4,6 +4,8 @@
;;; Code:
+(require 'url-cookie)
+
;; set utf-8 as the default encoding
(prefer-coding-system 'utf-8-unix)
(setq locale-coding-system 'utf-8)
@@ -32,6 +34,9 @@
(setq initial-scratch-message "") ;; empty scratch buffer
(setq garbage-collection-messages t) ;; log when the gc kicks in
+;; where to store cookies
+(setq url-cookie-file (expand-file-name "var/url/cookies" user-emacs-directory))
+
(custom-set-variables
'(use-file-dialog nil)
'(use-dialog-box nil)
@@ -65,7 +70,7 @@
(defvar my/yasnippets (expand-file-name "etc/snippets" user-emacs-directory))
(if (and (file-exists-p my/yasnippets) (not (member my/yasnippets yas-snippet-dirs)))
- (add-to-list 'yas-snippet-dirs my/yasnippets))
+ (setq yas--default-user-snippets-dir my/yasnippets))
;; the default (tab) conflicts with corfu for completion
(define-key yas-minor-mode-map (kbd "C-c y") #'yas-expand)