jeko2000 / .emacs.d

My ever-changing configuration for GNU Emacs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Emacs Configuration

My ever-changing configuration for GNU Emacs.

Please note that the bulk of the configuration lives in the config.org file under settings. The file init.el is responsible for bootstrapping the entire configuration.

Please see config.org for details on the packages I currently run.

Read this in Spanish.

Setup

To download this configuration, proceed with the following:

git clone --recurse-submodules https://github.com/jeko2000/.emacs.d.git

Tips

I’d recommend not to download this repo in its entirety. Instead, try browsing through the config.org and try out some code in you scratch buffer before adding it to your configuration.

Please note that you’ll need to have use-package installed if you are not using this init.el file. To get it, try adding the following to your configuration file:

(unless (package-installed-p 'use-package)
  (package-refresh-contents)
  (package-install 'use-package))

(eval-when-compile
  (require 'use-package))
(require 'bind-key)

Also, be sure to check out emacsrocks.com.

About

My ever-changing configuration for GNU Emacs


Languages

Language:Emacs Lisp 98.2%Language:YASnippet 1.8%