Created
May 19, 2013 10:50
-
-
Save fbmnds/5607345 to your computer and use it in GitHub Desktop.
Emacs Live config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; in ~\.emacs-live.el | |
| ;; | |
| ;; start Cmd with M-shell: | |
| (setq shell-file-name "cmdproxy.exe") | |
| (setq explicit-shell-file-name shell-file-name) | |
| (add-hook 'shell-mode-hook 'ansi-color-for-comint-mode-on) | |
| ;; | |
| ;; Powershell configuration: | |
| ;; download the *.el files from http://www.emacswiki.org/emacs/PowerShell | |
| ;; place them in ~\.emacs.d\vendor | |
| ;; | |
| ;; start Powershell with M-x powershell | |
| (load-file "~/.emacs.d/vendor/powershell.el") | |
| ;; | |
| ;; (optional) file mode for editing PowerShell .psl files | |
| (load-file "~/.emacs.d/vendor/powershell-mode.el") | |
| ;; | |
| ;; make Emacs aware of a customised Leiningen start script ~\bin\lein-clr.bat | |
| ;; | |
| (setq inferior-lisp-program "lein-clr") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment