#!/usr/bin/env sh ## Copyright (C) 2012 ~ 2021 Thierry Volpiatto ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation, either version 3 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program. If not, see . ## Commentary: # Preconfigured `emacs -Q' with a basic Helm configuration. # If TEMP env var exists, use it, otherwise declare it. test -z "$TEMP" && TEMP="/tmp" CONF_FILE="$TEMP/helm-cfg.el" EMACS=emacs TOOLBARS=-1 LOAD_PACKAGES= usage () { cat >&1 < $CONF_FILE <\`helm-find-files'\\n\ ;; - \`occur'(M-s o) =>\`helm-occur'\\n\ ;; - \`list-buffers'(C-x C-b) =>\`helm-buffers-list'\\n\ ;; - \`completion-at-point'(M-tab) =>\`helm-lisp-completion-at-point'[1]\\n\ ;; - \`apropos-command'(C-h a) =>\`helm-apropos'\\n\ ;; - \`dabbrev-expand'(M-/) =>\`helm-dabbrev'\\n\ ;; - \`execute-extended-command'(M-x) =>\`helm-M-x'\\n\\n ;; Some other Emacs commands are \"helmized\" by \`helm-mode'.\\n\ ;; [1] Coming with emacs-24.4, \`completion-at-point' is \"helmized\" by \`helm-mode'\\n\ ;; which provides Helm completion in many places like \`shell-mode'.\\n\ ;; Find context help for most Helm commands with \`C-h m'.\\n\ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\\n\\n")) (setq load-path (quote $LOAD_PATH)) (defvar default-package-manager nil) (defvar bootstrap-version) (let* ((packages "$LOAD_PACKAGES") (pkg-list (and packages (not (equal packages "")) (split-string packages ","))) (straight-path (expand-file-name "straight/build/" user-emacs-directory)) (async-path (expand-file-name "straight/build/async" user-emacs-directory)) (bootstrap-file (expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory)) (bootstrap-version 5)) (when (file-exists-p bootstrap-file) (setq default-package-manager 'straight) (load bootstrap-file nil 'nomessage) (add-to-list 'load-path async-path) (when pkg-list (dolist (pkg pkg-list) (let* ((pkg-path (expand-file-name pkg straight-path)) (autoload-file (expand-file-name (format "%s-autoloads.el" pkg) pkg-path))) (add-to-list 'load-path pkg-path) (if (file-exists-p autoload-file) (load autoload-file nil 'nomessage) (straight-use-package (intern pkg)))))))) (unless (eq default-package-manager 'straight) (require 'package) ;; User may be using a non standard \`package-user-dir'. ;; Modify \`package-directory-list' instead of \`package-user-dir' ;; in case the user starts Helm from a non-ELPA installation. (unless (file-equal-p package-user-dir (locate-user-emacs-file "elpa")) (add-to-list 'package-directory-list (directory-file-name (file-name-directory (directory-file-name default-directory))))) (let* ((str-lst "$LOAD_PACKAGES") (load-packages (and str-lst (not (string= str-lst "")) (split-string str-lst ",")))) (setq package-load-list (if (equal load-packages '("all")) '(all) (append '((helm-core t) (helm t) (async t) (popup t)) (mapcar (lambda (p) (list (intern p) t)) load-packages))))) (package-initialize)) (add-to-list 'load-path (file-name-directory (file-truename "$0"))) (unless (> $TOOLBARS 0) (setq default-frame-alist '((vertical-scroll-bars . nil) (tool-bar-lines . 0) (menu-bar-lines . 0) (fullscreen . nil)))) (blink-cursor-mode -1) (require 'helm-config) (helm-mode 1) (define-key global-map [remap find-file] 'helm-find-files) (define-key global-map [remap occur] 'helm-occur) (define-key global-map [remap list-buffers] 'helm-buffers-list) (define-key global-map [remap dabbrev-expand] 'helm-dabbrev) (define-key global-map [remap execute-extended-command] 'helm-M-x) (define-key global-map [remap apropos-command] 'helm-apropos) (unless (boundp 'completion-in-region-function) (define-key lisp-interaction-mode-map [remap completion-at-point] 'helm-lisp-completion-at-point) (define-key emacs-lisp-mode-map [remap completion-at-point] 'helm-lisp-completion-at-point)) (add-hook 'kill-emacs-hook #'(lambda () (and (file-exists-p "$CONF_FILE") (delete-file "$CONF_FILE")))) EOF $EMACS -Q -l "$CONF_FILE" "$@"