From 190e24d5f633ce9c7c44f8a8d9d9cb20c31244a0 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sun, 5 Feb 2023 14:06:44 -0800 Subject: ref(misc): set location of some files Change-Id: I201e804aeee3d579350b9efcf2680595ae8cf047 --- emacs/custom/my-settings.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'emacs/custom/my-settings.el') 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) -- cgit v1.2.3