chhajedji / .emacs.d

Personal emacs config. Works on my system :P

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Emacs Config 2.0

Better than the original 1.0 in some aspects. 1.0 was a monopoly of Uncle Dave’s tutorials. 2.0 uses the power from the vast internet and configuration knowledge is not restricted by some Uncle Dave.

Here we go with the config…

Firstly Install MELPA, which is a better package maanger for Emacs. Better in a way that it offers tons of more packages and to be honest, ELPA, the default ones are not even useful. To install MELPA, add following snippet at the starting of your init.el.

(require 'package)
;; Any add to list for package-archives (to add marmalade or melpa) goes here
(add-to-list 'package-archives 
    '("MELPA" .
      "http://melpa.org/packages/"))
(package-initialize)

Follow the config.org file for detailed list and configuration of packages and basic settings.

About

Personal emacs config. Works on my system :P

License:GNU General Public License v3.0


Languages

Language:Emacs Lisp 100.0%