diff options
| author | 2025-10-27 13:00:52 +0200 | |
|---|---|---|
| committer | 2025-10-27 13:00:52 +0200 | |
| commit | 20a9dcc67f6d45a801a58789804d912243da912d (patch) | |
| tree | c819ad2bb107dfdb69b5438ab8a70c90c871b842 /emacs | |
| parent | emacs: smartparens keybinds (diff) | |
| download | dotfiles-20a9dcc67f6d45a801a58789804d912243da912d.tar.gz dotfiles-20a9dcc67f6d45a801a58789804d912243da912d.tar.xz dotfiles-20a9dcc67f6d45a801a58789804d912243da912d.zip | |
emacs: Add a fix script
Diffstat (limited to 'emacs')
| -rwxr-xr-x | emacs/.config/emacs/bin/fix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/emacs/.config/emacs/bin/fix b/emacs/.config/emacs/bin/fix new file mode 100755 index 0000000..e92dfa4 --- /dev/null +++ b/emacs/.config/emacs/bin/fix | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | :;set -e # -*- mode: emacs-lisp; lexical-binding: t -*- | ||
| 3 | :;exec emacs --script "$0" "$@" | ||
| 4 | |||
| 5 | (setq load-prefer-newer t) | ||
| 6 | |||
| 7 | (message "Initializing...") | ||
| 8 | (load (expand-file-name "init" (file-name-directory (file-truename load-file-name))) nil nil t) | ||
| 9 | (message "Fixing versions...") | ||
| 10 | (arkta/fix-versions) | ||