A few minor changes regarding OSX support
This commit is contained in:
parent
2d3d1e12a8
commit
432e602977
3 changed files with 40 additions and 3 deletions
|
@ -1,5 +1,41 @@
|
||||||
|
;;; prelude-osx.el --- Emacs Prelude: OSX specific settings.
|
||||||
|
;;
|
||||||
|
;; Copyright © 2011-2013 Bozhidar Batsov
|
||||||
|
;;
|
||||||
|
;; Author: Bozhidar Batsov <bozhidar@batsov.com>
|
||||||
|
;; URL: https://github.com/bbatsov/prelude
|
||||||
|
;; Version: 1.0.0
|
||||||
|
;; Keywords: convenience
|
||||||
|
|
||||||
|
;; This file is not part of GNU Emacs.
|
||||||
|
|
||||||
|
;;; Commentary:
|
||||||
|
|
||||||
|
;; Some OSX specific stuff.
|
||||||
|
|
||||||
|
;;; License:
|
||||||
|
|
||||||
|
;; 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 GNU Emacs; see the file COPYING. If not, write to the
|
||||||
|
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
|
;; Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
;; On OS X Emacs doesn't use the shell PATH if it's not started from
|
;; On OS X Emacs doesn't use the shell PATH if it's not started from
|
||||||
;; the shell. Let's fix that:
|
;; the shell. Let's fix that:
|
||||||
|
(prelude-ensure-module-deps 'exec-path-from-shell)
|
||||||
|
(require 'exec-path-from-shell)
|
||||||
(exec-path-from-shell-initialize)
|
(exec-path-from-shell-initialize)
|
||||||
|
|
||||||
;; It's all in the Meta
|
;; It's all in the Meta
|
||||||
|
@ -25,3 +61,4 @@ with a Windows external keyboard from time to time."
|
||||||
(menu-bar-mode +1)
|
(menu-bar-mode +1)
|
||||||
|
|
||||||
(provide 'prelude-osx)
|
(provide 'prelude-osx)
|
||||||
|
;;; prelude-osx.el ends here
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
(package-initialize)
|
(package-initialize)
|
||||||
|
|
||||||
(defvar prelude-packages
|
(defvar prelude-packages
|
||||||
'(ace-jump-mode ack-and-a-half diminish elisp-slime-nav exec-path-from-shell
|
'(ace-jump-mode ack-and-a-half diminish elisp-slime-nav
|
||||||
expand-region flycheck gist
|
expand-region flycheck gist
|
||||||
git-commit-mode gitconfig-mode gitignore-mode
|
git-commit-mode gitconfig-mode gitignore-mode
|
||||||
guru-mode helm helm-projectile
|
guru-mode helm helm-projectile
|
||||||
|
|
4
init.el
4
init.el
|
@ -66,8 +66,8 @@ by Prelude.")
|
||||||
(dolist (f (directory-files parent-dir))
|
(dolist (f (directory-files parent-dir))
|
||||||
(let ((name (expand-file-name f parent-dir)))
|
(let ((name (expand-file-name f parent-dir)))
|
||||||
(when (and (file-directory-p name)
|
(when (and (file-directory-p name)
|
||||||
(not (equal f ".."))
|
(not (equal f ".."))
|
||||||
(not (equal f ".")))
|
(not (equal f ".")))
|
||||||
(add-to-list 'load-path name)))))
|
(add-to-list 'load-path name)))))
|
||||||
|
|
||||||
;; add Prelude's directories to Emacs's `load-path'
|
;; add Prelude's directories to Emacs's `load-path'
|
||||||
|
|
Loading…
Reference in a new issue