#!/usr/bin/env bash ## Copyright (C) 2012 ~ 2016 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 with a basic helm configuration. # Useful to start quickly an emacs -Q with helm. # Run it from this directory or symlink it somewhere in your PATH. # If TEMP env var exists use it otherwise declare it. [ -z $TEMP ] && declare TEMP="/tmp" CONF_FILE="$TEMP/helm-cfg.el" EMACS=emacs case $1 in -P) shift 1 declare EMACS=$1 shift 1 ;; -h) echo "Usage: ${0##*/} [-P} Emacs path [-h} help [--] EMACS ARGS" exit 2 ;; esac cd $(dirname "$0") # Check if autoload file exists. # It is maybe in a different directory if # emacs-helm.sh is a symlink. LS=$(ls -l $0 | awk '{print $11}') if [ ! -z $LS ]; then AUTO_FILE="$(dirname $LS)/helm-autoloads.el" else AUTO_FILE="helm-autoloads.el" fi if [ ! -e "$AUTO_FILE" ]; then echo No autoloads found, please run make first to generate autoload file exit 2 fi cat > $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\ ;; - \`dabbrev-expand'(M-/) =>\`helm-dabbrev'\n\n\ ;; - \`execute-extended-command'(M-x) =>\`helm-M-x'\n\n ;; Some others native emacs commands are \"helmized\" by \`helm-mode'.\n\ ;; [1] Coming with emacs-24.4 \`completion-at-point' is \"helmized\" by \`helm-mode'\n\ ;; which provide helm completion in many other places like \`shell-mode'.\n\ ;; You will find embeded help for most helm commands with \`C-h m'.\n\ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n")) (setq package-user-dir (directory-file-name (file-name-directory (directory-file-name default-directory)))) (unless (member "helm.el" (directory-files default-directory)) (setq package-load-list '((helm-core t) (helm t) (async t) (popup t))) (package-initialize)) (add-to-list 'load-path (file-name-directory (file-truename "$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) (global-set-key (kbd "M-x") 'helm-M-x) (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 $@