diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-30 12:32:53 +0100 |
---|---|---|
committer | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-30 12:32:53 +0100 |
commit | 42583f862407677b5e6562d9e9b84de6710774a4 (patch) | |
tree | 178966b9c846cab1d1f454e25e5a345b66557959 /emacs.el | |
parent | 3860360492687b6e9fb86cab4b923574601637ff (diff) |
Emacs: use setq-default instead of setq
Diffstat (limited to 'emacs.el')
-rw-r--r-- | emacs.el | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -11,7 +11,7 @@ ;;; https://www.lucacambiaghi.com/vanilla-emacs/readme.html ;;; =defvar= warnings fix -(setq enable-local-variables :all) +(setq-default enable-local-variables :all) ;;; https://elpa.gnu.org/packages/aggressive-indent.html ;;; Automatic Activation of Aggressive Indent @@ -25,8 +25,8 @@ ;; Highlight the pair of delimiters under the cursor (show-paren-mode 1) -(setq show-paren-delay - 0) +(setq-default show-paren-delay + 0) ;; Add Geiser and its auto-completion (ac-config-default) @@ -81,14 +81,14 @@ ;;; https://guix.gnu.org/manual/en/html_node/The-Perfect-Setup.html ;;; Copyright Information -(setq user-full-name - "Marek Paśnikowski") -(setq user-mail-address - "marekpasnikowski@protonmail.com") +(setq-default user-full-name + "Marek Paśnikowski") +(setq-default user-mail-address + "marekpasnikowski@protonmail.com") ;;; Startup Screen Inhibition -(setq inhibit-startup-screen - t) +(setq-default inhibit-startup-screen + t) ;; Enable the column-80 line (global-display-fill-column-indicator-mode 1) |