Skip to content

chhajedji/.emacs.d

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
May 24, 2020 13:13
November 2, 2023 15:18
August 7, 2023 12:12

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.