forked from suutari-ai/prelude
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/bbatsov/prelude
* 'master' of https://github.com/bbatsov/prelude: Use sbcl in the absence of ccl on OS X Add tip on keyboard shortcut for ace-jump-mode Auto install cmake-mode Enable ERC spell mode only if prelude-flyspell Add tip on keyboard shortcut to open recent file Add Prelude tip on keyboard shortcut to join lines Added Gitter badge Update copyright years Kill some tabs [Fix bbatsov#813] Add missing smartrep require
- Loading branch information
Showing
42 changed files
with
83 additions
and
72 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-core.el --- Emacs Prelude: Core Prelude functions. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
@@ -374,6 +374,7 @@ Doesn't mess with special buffers." | |
(defvar prelude-tips | ||
'("Press <C-c o> to open a file with external program." | ||
"Press <C-c p f> to navigate a project's files with ido." | ||
"Press <s-r> to open a recently visited file." | ||
"Press <C-c p s g> to run grep on a project." | ||
"Press <C-c p p> to switch between projects." | ||
"Press <C-=> to expand the selected region." | ||
|
@@ -392,6 +393,8 @@ Doesn't mess with special buffers." | |
"Press <C-c C-z> in a Elisp buffer to launch an interactive Elisp shell." | ||
"Press <C-Backspace> to kill a line backwards." | ||
"Press <C-S-Backspace> or <s-k> to kill the whole line." | ||
"Press <s-j> or <C-^> to join lines." | ||
"Press <s-.> or <C-c j> to jump to the start of a word in any visible window." | ||
"Press <f11> to toggle fullscreen mode." | ||
"Press <f12> to toggle the menu bar." | ||
"Explore the Tools->Prelude menu to find out about some of Prelude extensions to Emacs." | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-custom.el --- Emacs Prelude: Prelude's customizable variables. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-editor.el --- Emacs Prelude: enhanced core editing experience. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
@@ -392,6 +392,8 @@ indent yanked text (with prefix arg don't indent)." | |
|
||
;; operate-on-number | ||
(require 'operate-on-number) | ||
(require 'smartrep) | ||
|
||
(smartrep-define-key global-map "C-c ." | ||
'(("+" . apply-operation-to-number-at-point) | ||
("-" . apply-operation-to-number-at-point) | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-global-keybindings.el --- Emacs Prelude: some useful keybindings. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-mode.el --- Emacs Prelude: minor mode | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-osx.el --- Emacs Prelude: OSX specific settings. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-packages.el --- Emacs Prelude: default package selection. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
@@ -127,6 +127,8 @@ PACKAGE is installed only if not already present. The file is opened in MODE." | |
|
||
(defvar prelude-auto-install-alist | ||
'(("\\.clj\\'" clojure-mode clojure-mode) | ||
("\\.cmake\\'" cmake-mode cmake-mode) | ||
("CMakeLists\\.txt\\'" cmake-mode cmake-mode) | ||
("\\.coffee\\'" coffee-mode coffee-mode) | ||
("\\.css\\'" css-mode css-mode) | ||
("\\.csv\\'" csv-mode csv-mode) | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-ui.el --- Emacs Prelude: UI optimizations and tweaks. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-c.el --- Emacs Prelude: cc-mode configuration. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-clojure.el --- Emacs Prelude: Clojure programming configuration. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: http://batsov.com/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-coffee.el --- Emacs Prelude: CoffeeScript programming support. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-common-lisp.el --- Emacs Prelude: lisp-mode and SLIME config. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
@@ -54,7 +54,8 @@ | |
(sbcl ("sbcl" "--noinform") :coding-system utf-8-unix))) | ||
|
||
;; select the default value from slime-lisp-implementations | ||
(if (eq system-type 'darwin) | ||
(if (and (eq system-type 'darwin) | ||
(executable-find "ccl")) | ||
;; default to Clozure CL on OS X | ||
(setq slime-default-lisp 'ccl) | ||
;; default to SBCL on Linux and Windows | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-company.el --- company-mode setup | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-css.el --- Emacs Prelude: css support | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: http://www.batsov.com/emacs-prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-elixir.el --- Emacs Prelude: Elixir programming support. | ||
;; | ||
;; Copyright © 2014 Samuel Tonini | ||
;; Copyright © 2014-2015 Samuel Tonini | ||
;; | ||
;; Author: Samuel Tonini <[email protected]> | ||
;; Version: 1.0.0 | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-emacs-lisp.el --- Emacs Prelude: Nice config for Elisp programming. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-erc.el --- Emacs Prelude: ERC mode configuration. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
@@ -74,7 +74,8 @@ | |
(erc-truncate-mode +1) | ||
|
||
;; enable spell checking | ||
(erc-spelling-mode 1) | ||
(when prelude-flyspell | ||
(erc-spelling-mode 1)) | ||
;; set different dictionaries by different servers/channels | ||
;;(setq erc-spelling-dictionaries '(("#emacs" "american"))) | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-erlang.el --- Emacs Prelude: Erlang programming support. | ||
;; | ||
;; Copyright © 2011-2014 Gleb Peregud | ||
;; Copyright © 2011-2015 Gleb Peregud | ||
;; | ||
;; Author: Gleb Peregud <[email protected]> | ||
;; Version: 1.0.0 | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-evil.el --- Emacs Prelude: evil-mode configuration. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: http://batsov.com/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-haskell.el --- Emacs Prelude: Nice config for Haskell programming. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-helm-everywhere.el --- Enable Helm everywhere | ||
;; | ||
;; Copyright © 2014 Tu, Do Hoang | ||
;; Copyright © 2014-2015 Tu, Do Hoang | ||
;; | ||
;; Author: Tu, Do Hoang ([email protected]) | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-helm.el --- Helm setup | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-ido.el --- Ido setup | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-js.el --- Emacs Prelude: js-mode configuration. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-key-chord.el --- Key chord setup | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-latex.el --- Emacs Prelude: Sane setup for LaTeX writers. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-lisp.el --- Emacs Prelude: Configuration common to all lisp modes. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-mediawiki.el --- Emacs Prelude: mediawiki editing config | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-ocaml.el --- Emacs Prelude: decent Perl coding settings. | ||
;; | ||
;; Copyright © 2014 Geoff Shannon | ||
;; Copyright © 2014-2015 Geoff Shannon | ||
;; | ||
;; Author: Geoff Shannon <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-org.el --- Emacs Prelude: org-mode configuration. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-perl.el --- Emacs Prelude: decent Perl coding settings. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-programming.el --- Emacs Prelude: prog-mode configuration | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; prelude-python.el --- Emacs Prelude: python.el configuration. | ||
;; | ||
;; Copyright © 2011-2014 Bozhidar Batsov | ||
;; Copyright © 2011-2015 Bozhidar Batsov | ||
;; | ||
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/prelude | ||
|
Oops, something went wrong.