Emacs config utilizing prelude as a base
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

627 lines
22 KiB

12 years ago
13 years ago
14 years ago
14 years ago
  1. [![Gittip](http://img.shields.io/gittip/bbatsov.svg)](https://www.gittip.com/bbatsov/)
  2. Emacs Prelude
  3. =============
  4. Prelude is an Emacs distribution that aims to enhance the default
  5. Emacs experience. Prelude alters a lot of the default settings,
  6. bundles a plethora of additional packages and adds its own core
  7. library to the mix. The final product offers an easy to use Emacs
  8. configuration for Emacs newcomers and lots of additional power for
  9. Emacs power users.
  10. Prelude is compatible **ONLY with GNU Emacs 24.x**. In general you're
  11. advised to always run Prelude with the latest Emacs - currently
  12. **24.3**.
  13. **Table of Contents**
  14. - [Fast Forward](#fast-forward)
  15. - [Installing Emacs 24](#installing-emacs-24)
  16. - [Installation](#installation)
  17. - [Automated](#automated)
  18. - [Via Curl](#via-curl)
  19. - [Via Wget](#via-wget)
  20. - [Manual](#manual)
  21. - [Updating Prelude](#updating-prelude)
  22. - [Manual update](#manual-update)
  23. - [Update all bundled packages](#update-all-bundled-packages)
  24. - [Update Prelude's code](#update-preludes-code)
  25. - [Restart Prelude](#restart-prelude)
  26. - [Automatic update](#automatic-update)
  27. - [Enabling additional modules](#enabling-additional-modules)
  28. - [Running](#running)
  29. - [Getting to know Prelude](#getting-to-know-prelude)
  30. - [Keymap](#keymap)
  31. - [Global](#global)
  32. - [Prelude Mode](#prelude-mode)
  33. - [OSX modifier keys](#osx-modifier-keys)
  34. - [Projectile](#projectile)
  35. - [Key-chords](#key-chords)
  36. - [Disabling key-chords](#disabling-key-chords)
  37. - [Automatic package installation](#automatic-package-installation)
  38. - [Color Themes](#color-themes)
  39. - [Personalizing](#personalizing)
  40. - [Disabling whitespace-mode](#disabling-whitespace-mode)
  41. - [Disable flyspell-mode](#disable-flyspell-mode)
  42. - [Caveats & Pitfalls](#caveats--pitfalls)
  43. - [Updating bundled packages](#updating-bundled-packages)
  44. - [Problems with flyspell-mode](#problems-with-flyspell-mode)
  45. - [Ugly colors in the terminal Emacs version](#ugly-colors-in-the-terminal-emacs-version)
  46. - [MELPA error on initial startup](#melpa-error-on-initial-startup)
  47. - [No arrow navigation in editor buffers](#no-arrow-navigation-in-editor-buffers)
  48. - [Customized C-a behavior](#customized-c-a-behavior)
  49. - [Poor ido matching performance on large datasets](#poor-ido-matching-performance-on-large-datasets)
  50. - [Windows compatibility](#windows-compatibility)
  51. - [Share the knowledge](#share-the-knowledge)
  52. - [Known issues](#known-issues)
  53. - [Support](#support)
  54. - [Contributors](#contributors)
  55. - [Bugs & Improvements](#bugs--improvements)
  56. ## Fast Forward
  57. Assuming you're using an Unix-like OS (`*BSD`, `GNU/Linux`, `OS X`, `Solaris`,
  58. etc), you already have Emacs 24 installed, as well as `git` & `curl` you
  59. can skip the whole manual and just type in your favorite shell the
  60. following command:
  61. ```bash
  62. curl -L http://git.io/epre | sh
  63. ```
  64. You can now power up your Emacs, sit back and enjoy Prelude,
  65. forgetting about the rest of this manual.
  66. There are two environment variables you can use to control the
  67. source repository and the installation directory. To change the
  68. installation directory:
  69. ```bash
  70. export PRELUDE_INSTALL_DIR="$HOME/.emacs.d" && curl -L https://github.com/bbatsov/prelude/raw/master/utils/installer.sh | sh
  71. ```
  72. To change the source repository:
  73. ```bash
  74. export PRELUDE_URL="https://github.com/yourname/prelude.git" && curl -L https://github.com/bbatsov/prelude/raw/master/utils/installer.sh | sh
  75. ```
  76. Note that the installer will back up any existing `.emacs` file or
  77. `.emacs.d` since it will unpack Prelude's code in `.emacs.d`. If
  78. you're doing a manual install make sure you don't have a `.emacs` file
  79. or back up your existing `.emacs.d` directory manually.
  80. Don't forget to adjust your `prelude-modules.el` file once the installation is done.
  81. By default most of the modules that ship with Prelude are not loaded.
  82. ## Installing Emacs 24
  83. Obviously to use the Emacs Prelude you have to install Emacs 24
  84. first. Have a look at the [WikEmacs articles on installing Emacs](http://wikemacs.org/index.php/Installing_Emacs).
  85. ## Installation
  86. ### Automated
  87. You can install **Emacs Prelude** via the command line with either `curl` or
  88. `wget`. Naturally `git` is also required.
  89. #### Via Curl
  90. If you're using `curl` type the following command:
  91. ```bash
  92. curl -L https://github.com/bbatsov/prelude/raw/master/utils/installer.sh | sh
  93. ```
  94. #### Via Wget
  95. If you're using `wget` type:
  96. ```bash
  97. wget --no-check-certificate https://github.com/bbatsov/prelude/raw/master/utils/installer.sh -O - | sh
  98. ```
  99. ### Manual
  100. ```bash
  101. git clone git://github.com/bbatsov/prelude.git path/to/local/repo
  102. ln -s path/to/local/repo ~/.emacs.d
  103. cd ~/.emacs.d
  104. ```
  105. You'd do well to replace `~/.emacs.d` with the value of
  106. `user-emacs-directory` for your OS. You can check the value by doing
  107. `C-h v user-emacs-directory` inside Emacs.
  108. ## Updating Prelude
  109. ### Manual update
  110. The update procedure is fairly straightforward and consists of 3 steps:
  111. #### Update all bundled packages
  112. Just run <kbd>M-x package-list-packages RET U x</kbd>.
  113. #### Update Prelude's code
  114. ```bash
  115. cd path/to/prelude/installation
  116. git pull
  117. ```
  118. The `path/to/prelude/installation` is usually `~/.emacs.d` (at least
  119. on Unix systems).
  120. #### Restart Prelude
  121. It's generally a good idea to stop Emacs after you do the update. The
  122. next time Prelude starts it will install any new dependencies (if
  123. there are such).
  124. ### Automatic update
  125. Simply run <kbd>M-x prelude-update</kbd> from Emacs itself and restart Emacs afterwards.
  126. ## Enabling additional modules
  127. By default most of the modules that ship with Prelude are not loaded. For more information on the functionality provided by these modules visit the [docs](modules/doc/README.md).
  128. ```lisp
  129. ;;; Uncomment the modules you'd like to use and restart Prelude afterwards
  130. (require 'prelude-c)
  131. ;; (require 'prelude-clojure)
  132. ;; (require 'prelude-coffee)
  133. ;; (require 'prelude-common-lisp)
  134. ;; (require 'prelude-css)
  135. (require 'prelude-emacs-lisp)
  136. (require 'prelude-erc)
  137. ;; (require 'prelude-erlang)
  138. ;; (require 'prelude-haskell)
  139. (require 'prelude-js)
  140. ;; (require 'prelude-latex)
  141. (require 'prelude-lisp)
  142. ;; (require 'prelude-markdown)
  143. ;; (require 'prelude-mediawiki)
  144. (require 'prelude-org)
  145. (require 'prelude-perl)
  146. ;; (require 'prelude-python)
  147. ;; (require 'prelude-ruby)
  148. ;; (require 'prelude-scala)
  149. (require 'prelude-scheme)
  150. ;; (require 'prelude-scss)
  151. ;; (require 'prelude-web)
  152. (require 'prelude-xml)
  153. ```
  154. You'll need to adjust your `prelude-modules.el` file once the
  155. installation is done. If you are doing a manual install then you first
  156. need to copy the `prelude-modules.el` available in the sample
  157. directory to the root of `path/to/prelude/installation` and then
  158. adjust that one.
  159. After you've uncommented a module you should either restart Emacs or evaluate the module
  160. `require` expression with <kbd>C-x C-e</kbd>.
  161. ## Running
  162. Nothing fancy here. Just start Emacs as usual. Personally I run Emacs
  163. in daemon mode:
  164. ```bash
  165. emacs --daemon
  166. ```
  167. Afterwards I connect to the server with either a terminal or a GUI
  168. client like this:
  169. ```bash
  170. emacsclient -t
  171. emacsclient -c
  172. ```
  173. You'd probably do well to put a few aliases in your `.zshrc` (or
  174. `.bashrc`):
  175. ```bash
  176. alias e='emacsclient -t'
  177. alias ec='emacsclient -c'
  178. alias vim='emacsclient -t'
  179. alias vi='emacsclient -t'
  180. ```
  181. The last two aliases are helpful if you're used to editing files from
  182. the command line using `vi(m)`.
  183. ## Getting to know Prelude
  184. Certainly the best way to understand how Prelude enhances the default
  185. Emacs experience is to peruse Prelude's source code (which is
  186. obviously written in Emacs Lisp). Understanding the code is not
  187. necessary of course. Prelude includes a `prelude-mode` minor Emacs mode
  188. which collects some of the additional functionality added by
  189. Prelude. It also adds an additional keymap that binds many of those
  190. extensions to keybindings.
  191. ### Keymap
  192. #### Global
  193. Keybinding | Description
  194. -------------------|------------------------------------------------------------
  195. <kbd>C-M-h</kbd> | Kill the previous word(`backward-kill-word`). (as in Bash/Zsh)
  196. <kbd>C-x \\</kbd> | `align-regexp`
  197. <kbd>C-+</kbd> | Increase font size(`text-scale-increase`).
  198. <kbd>C--</kbd> | Decrease font size(`text-scale-decrease`).
  199. <kbd>C-x O</kbd> | Go back to previous window (the inverse of `other-window` (`C-x o`)).
  200. <kbd>C-^</kbd> | Join two lines into one(`prelude-top-join-line`).
  201. <kbd>C-x p</kbd> | Start `proced` (manage processes from Emacs; works only in Linux).
  202. <kbd>C-x m</kbd> | Start `eshell`.
  203. <kbd>C-x M-m</kbd> | Start your default shell.
  204. <kbd>C-x C-m</kbd> | Alias for `M-x`.
  205. <kbd>C-h A</kbd> | Run `apropos` (search in all Emacs symbols).
  206. <kbd>M-/</kbd> | Run `hippie-expand` (a replacement for the default `dabbrev-expand`).
  207. <kbd>C-x C-b</kbd> | Open `ibuffer` (a replacement for the default `buffer-list`).
  208. <kbd>F11</kbd> | Make the window full screen.
  209. <kbd>F12</kbd> | Toggle the Emacs menu bar.
  210. <kbd>C-x g</kbd> | Open Magit's status buffer.
  211. <kbd>C-=</kbd> | Run `expand-region` (incremental text selection).
  212. <kbd>C-a</kbd> | Run `prelude-move-beginning-of-line`. Read [this](http://emacsredux.com/blog/2013/05/22/smarter-navigation-to-the-beginning-of-a-line/) for details.
  213. #### Prelude Mode
  214. Keybinding | Description
  215. -------------------|------------------------------------------------------------
  216. <kbd>C-c o</kbd> | Open the currently visited file with an external program.
  217. <kbd>C-c i</kbd> | Search for a symbol, only for buffers that contain code
  218. <kbd>C-c g</kbd> | Search in Google for the thing under point (or an interactive query).
  219. <kbd>C-c G</kbd> | Search in GitHub for the thing under point (or an interactive query).
  220. <kbd>C-c y</kbd> | Search in YouTube for the thing under point (or an interactive query).
  221. <kbd>C-S-RET</kbd> or <kbd>Super-o</kbd> | Insert an empty line above the current line and indent it properly.
  222. <kbd>S-RET</kbd> or <kbd>M-o</kbd> | Insert an empty line and indent it properly (as in most IDEs).
  223. <kbd>C-S-up</kbd> or <kbd>M-S-up</kbd> | Move the current line or region up.
  224. <kbd>C-S-down</kbd> or <kbd>M-S-down</kbd>| Move the current line or region down.
  225. <kbd>C-c n</kbd> | Fix indentation in buffer and strip whitespace.
  226. <kbd>C-c f</kbd> | Open recently visited file.
  227. <kbd>C-M-\\</kbd> | Indent region (if selected) or the entire buffer.
  228. <kbd>C-c u</kbd> | Open URL in your default browser.
  229. <kbd>C-c e</kbd> | Eval a bit of Emacs Lisp code and replace it with its result.
  230. <kbd>C-c s</kbd> | Swap two active windows.
  231. <kbd>C-c d</kbd> | Duplicate the current line (or region).
  232. <kbd>C-c M-d</kbd> | Duplicate and comment the current line (or region).
  233. <kbd>C-c r</kbd> | Rename the currently visited file and buffer.
  234. <kbd>C-c t</kbd> | Open a terminal emulator (`ansi-term`).
  235. <kbd>C-c k</kbd> | Kill all open buffers except the one you're currently in.
  236. <kbd>C-c h</kbd> | Open Helm (available if you've enabled the `prelude-helm` module).
  237. <kbd>C-c +</kbd> | Increment integer at point.
  238. <kbd>C-c -</kbd> | Decrement integer at point.
  239. <kbd>Super-r</kbd> | Recent files
  240. <kbd>Super-x</kbd> | Expand region
  241. <kbd>Super-j</kbd> | Join lines
  242. <kbd>Super-k</kbd> | Kill whole line
  243. <kbd>Super-m m</kbd> | Magit status
  244. <kbd>Super-m l</kbd> | Magit log
  245. <kbd>Super-m f</kbd> | Magit file log
  246. <kbd>Super-m b</kbd> | Magit blame mode
  247. #### OSX modifier keys
  248. Prelude does not mess by default with the standard mapping of `Command` (to `Super`) and `Option` (to `Meta`).
  249. If you want to swap them add this to your personal config:
  250. ```lisp
  251. (setq mac-command-modifier 'meta)
  252. (setq mac-option-modifier 'super)
  253. ```
  254. You can also temporarily swap them with `C-c w` (`M-x prelude-swap-meta-and-super`).
  255. #### Projectile
  256. Here's a list of functionality provided by [Projectile](https://github.com/bbatsov/projectile):
  257. Keybinding | Description
  258. -------------------|------------------------------------------------------------
  259. <kbd>C-c p f</kbd> | Display a list of all files in the project. With a prefix argument it will clear the cache first.
  260. <kbd>C-c p d</kbd> | Display a list of all directories in the project. With a prefix argument it will clear the cache first.
  261. <kbd>C-c p T</kbd> | Display a list of all test files(specs, features, etc) in the project.
  262. <kbd>C-c p g</kbd> | Run grep on the files in the project.
  263. <kbd>C-c p b</kbd> | Display a list of all project buffers currently open.
  264. <kbd>C-c p o</kbd> | Runs `multi-occur` on all project buffers currently open.
  265. <kbd>C-c p r</kbd> | Runs interactive query-replace on all files in the projects.
  266. <kbd>C-c p i</kbd> | Invalidates the project cache (if existing).
  267. <kbd>C-c p R</kbd> | Regenerates the projects `TAGS` file.
  268. <kbd>C-c p k</kbd> | Kills all project buffers.
  269. <kbd>C-c p D</kbd> | Opens the root of the project in `dired`.
  270. <kbd>C-c p e</kbd> | Shows a list of recently visited project files.
  271. <kbd>C-c p a</kbd> | Runs `ack` on the project. Requires the presence of `ack-and-a-half`.
  272. <kbd>C-c p c</kbd> | Runs a standard compilation command for your type of project.
  273. <kbd>C-c p p</kbd> | Runs a standard test command for your type of project.
  274. <kbd>C-c p z</kbd> | Adds the currently visited to the cache.
  275. <kbd>C-c p s</kbd> | Display a list of known projects you can switch to.
  276. Prelude adds some extra keybindings:
  277. Keybinding | Command
  278. -------------------|------------------------------------------------------------
  279. <kbd>Super-f</kbd> | Find file in project
  280. <kbd>Super-d</kbd> | Find directory in project
  281. <kbd>Super-g</kbd> | Run grep on project
  282. <kbd>Super-p</kbd> | Switch projects
  283. If you ever forget any of Projectile's keybindings just do a:
  284. <kbd>C-c p C-h</kbd>
  285. #### Key-chords
  286. **Key-chords are available only when the `prelude-key-chord` module has been enabled.**
  287. Keybinding | Description
  288. -------------------|----------------------------------------------
  289. <kbd>jj</kbd> | Jump to the beginning of a word(`ace-jump-word-mode`)
  290. <kbd>jk</kbd> | Jump to a character(`ace-jump-char-mode`)
  291. <kbd>jl</kbd> | Jump to the beginning of a line(`ace-jump-line-mode`)
  292. <kbd>JJ</kbd> | Jump back to previous buffer(`prelude-switch-to-previous-buffer`)
  293. <kbd>uu</kbd> | View edits as a tree(`undo-tree-visualize`)
  294. <kbd>xx</kbd> | Executed extended command(`execute-extended-command`)
  295. <kbd>yy</kbd> | Browse the kill ring(`browse-kill-ring`)
  296. ##### Disabling key-chords
  297. In some cases you may not want to have a key-chord that is defined by prelude,
  298. in which case you can disable the binding in your `personal.el` file by setting
  299. its command to `nil`. For example, to disable the `jj` key-chord add the
  300. following line:
  301. ```lisp
  302. (key-chord-define-global "jj" nil)
  303. ```
  304. If you're an `evil-mode` user you'll probably do well to disable `key-chord-mode` altogether:
  305. ```lisp
  306. (key-chord-mode -1)
  307. ```
  308. #### vim emulation
  309. If you want to use vim inside of emacs enable the `prelude-evil` module which provides
  310. support for `evil-mode`.
  311. ## Automatic package installation
  312. The default Prelude installation comes with a bare minimum of
  313. functionality. It will however install add-ons for various programming
  314. languages and frameworks on demand. For instance - if you try to open
  315. a `.clj` file `clojure-mode`, `cider` and Prelude's enhanced Lisp
  316. configuration will be installed automatically for you.
  317. You can, of course, install anything you wish manually as well.
  318. ### Color Themes
  319. Emacs 24 ships with a new theming facility that effectively renders
  320. the old color-theme package obsolete. Emacs 24 provides a dozen of
  321. built-in themes you can use out-of-the-box by invoking the `M-x
  322. load-theme` command.
  323. [Zenburn](https://github.com/bbatsov/zenburn-emacs) is the default color theme in Prelude, but you can change it
  324. at your discretion. Why Zenburn? I (and lots of hackers around the
  325. world) find it pretty neat for some reason. Personally I find the
  326. default theme pretty tiresome for the eyes, that's why I took that
  327. "controversial" decision to replace it. You can, of course, easily go
  328. back to the default (or select another theme entirely).
  329. To disable Zenburn just put in your personal config the following
  330. line:
  331. ```lisp
  332. (disable-theme 'zenburn)
  333. ```
  334. Or you can use another theme altogether by adding something like:
  335. ```lisp
  336. (load-theme 'solarized-dark t)
  337. ```
  338. **P.S.** Solarized is not available by default - you'll have to
  339. install it from MELPA first (`M-x package-install RET
  340. solarized-theme`).
  341. ### Personalizing
  342. Fork the official Prelude repo and add your own touch to it. You're advised to avoid changing stuff outside of the
  343. personal folder to avoid having to deal with git merge conflicts in the future.
  344. If you'd like to add some auto installation of packages in your
  345. personal config use the following code:
  346. ```lisp
  347. (prelude-require-packages '(some-package some-other-package))
  348. ```
  349. If you require just a single package you can also use:
  350. ```lisp
  351. (prelude-require-package 'some-package)
  352. ```
  353. #### Preloading personal config
  354. Sometimes you might want to load code before Prelude has started loading. Prelude will automatically preload all
  355. Emacs Lisp files in your `personal/preload` directory. Note that at this point you can't using anything from
  356. Prelude, except a few variables like `prelude-dir`, etc (since nothing is yet loaded).
  357. #### Disabling whitespace-mode
  358. Although `whitespace-mode` is awesome some people might find it too
  359. intrusive. You can disable it in your
  360. personal config with the following bit of code:
  361. ```lisp
  362. (setq prelude-whitespace nil)
  363. ```
  364. If you like `whitespace-mode` but prefer it to not automatically
  365. cleanup your file on save, you can disable that behavior by setting
  366. prelude-clean-whitespace-on-save to nil in your config file with:
  367. ```lisp
  368. (setq prelude-clean-whitespace-on-save nil)
  369. ```
  370. The prelude-clean-whitespace-on-save setting can also be set on a
  371. per-file or directory basis by using a file variable or a
  372. .dir-locals.el file.
  373. #### Disable flyspell-mode
  374. If you're not fond of spellchecking on the fly:
  375. ```lisp
  376. (setq prelude-flyspell nil)
  377. ```
  378. ## Caveats & Pitfalls
  379. ### Updating bundled packages
  380. Generally it's a good idea to do a package update before running
  381. updating Prelude, since the latest Prelude code might depend on newer
  382. versions of the bundled packages than you would currently have
  383. installed.
  384. If you're doing manual Prelude updates you should always do a package update first.
  385. `M-x package-list-packages RET U x`
  386. That's not necessary if you're using `M-x prelude-update`, since it
  387. will automatically update the installed packages.
  388. ### Problems with flyspell-mode
  389. Prelude makes heavy use of the flyspell-mode package for spell
  390. checking of various things. The proper operation of flyspell depends
  391. on the presence of the `aspell` program and an `en` dictionary on your
  392. system. You can install `aspell` and the dictionary on OS X with
  393. `homebrew` like this:
  394. ```bash
  395. brew install aspell --with-lang=en
  396. ```
  397. On Linux distros - just use your distro's package manager.
  398. ### Ugly colors in the terminal Emacs version
  399. If your Emacs looks considerably uglier in a terminal (compared to the
  400. GUI version) try adding this to your `.bashrc` or `.zshrc`:
  401. ```bash
  402. export TERM=xterm-256color
  403. ```
  404. Source the `.bashrc` file and start Emacs again.
  405. ### MELPA error on initial startup
  406. If you get some http connection error related to the MELPA repo
  407. just do a manual `M-x package-refresh-contents` and restart Emacs
  408. afterwards.
  409. ### No arrow navigation in editor buffers
  410. This is not a bug - it's a feature! I firmly believe that the one true
  411. way to use Emacs is by using it the way it was intended to be used (as
  412. far as navigation is concerned at least). That's why I've disabled all
  413. movement commands with arrows (and keys like page up, page down,
  414. etc) - to prevent you from being tempted to use them.
  415. If you'd like to be able to use the arrow keys (but still be reminded of
  416. the alternatives) put this in your personal config:
  417. ```lisp
  418. (setq guru-warn-only t)
  419. ```
  420. To disable `guru-mode` completely add the following snippet to your
  421. personal Emacs config:
  422. ```lisp
  423. (setq prelude-guru nil)
  424. ```
  425. ### Customized C-a behavior
  426. Prelude overrides `C-a` to behave as described
  427. [here](http://emacsredux.com/blog/2013/05/22/smarter-navigation-to-the-beginning-of-a-line/). If
  428. you don't like that simply add this to your personal config:
  429. ```lisp
  430. (global-set-key [remap move-beginning-of-line]
  431. 'move-beginning-of-line)
  432. ```
  433. ### Poor ido matching performance on large datasets
  434. Prelude swaps the default `ido` flex matching with the more powerful
  435. [ido-flx](https://github.com/lewang/flx).
  436. The sorting algorithm `flx` uses is more complex, but yields better results.
  437. On slower machines, it may be necessary to lower `flx-ido-threshhold` to
  438. ensure a smooth experience.
  439. ```lisp
  440. (setq flx-ido-threshhold 1000)
  441. ```
  442. You can always disable the improved sorting algorithm all together like this:
  443. ```lisp
  444. (flx-ido-mode -1)
  445. ```
  446. ### Windows compatibility
  447. While everything in Prelude should work fine in Windows, I test it only
  448. with Linux & OSX, so there are Windows related problems from time to
  449. time. This situation will probably improve over time.
  450. ## Share the knowledge
  451. [EmacsWiki](http://emacswiki.org) collects useful resources for working
  452. with GNU Emacs. Please, take the time to peruse and improve them as
  453. you accumulate knowledge about Emacs. Prelude makes this especially
  454. easy, since it bundles
  455. ## Known issues
  456. Check out the project's
  457. [issue list](https://github.com/bbatsov/prelude/issues?sort=created&direction=desc&state=open)
  458. a list of unresolved issues. By the way - feel free to fix any of them
  459. and send me a pull request. :-)
  460. ## Support
  461. Support is available via the Prelude Google Group <emacs-prelude@googlegroups.com>.
  462. ## Contributors
  463. Here's a [list](https://github.com/bbatsov/prelude/contributors) of all the people who have contributed to the
  464. development of Emacs Prelude.
  465. ## Bugs & Improvements
  466. Bug reports and suggestions for improvements are always
  467. welcome. GitHub pull requests are even better! :-)
  468. Cheers,<br/>
  469. [Bozhidar](https://twitter.com/bbatsov)