Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chhajedji/.emacs.d
Personal emacs config. Works on my system :P
https://github.com/chhajedji/.emacs.d
elisp emacs emacs-lisp gnu-emacs lisp
Last synced: 22 days ago
JSON representation
Personal emacs config. Works on my system :P
- Host: GitHub
- URL: https://github.com/chhajedji/.emacs.d
- Owner: chhajedji
- License: gpl-3.0
- Created: 2020-05-24T07:21:13.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-09T13:25:26.000Z (5 months ago)
- Last Synced: 2024-06-09T14:36:41.461Z (5 months ago)
- Topics: elisp, emacs, emacs-lisp, gnu-emacs, lisp
- Language: Emacs Lisp
- Homepage:
- Size: 1.51 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
* Emacs Config 2.0
Better than the [[https://github.com/chhajedji/.emacs.d/tree/1.0][original 1.0]] in some aspects. 1.0 was a monopoly of
[[https://youtube.com/playlist?list=PLX2044Ew-UVVv31a0-Qn3dA6Sd_-NyA1n][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 [[https://melpa.org/#/][MELPA]], which is a better package maanger for
Emacs. Better in a way that it offers tons of more packages and to be
honest, [[https://elpa.gnu.org/][ELPA]], the default ones are not even useful. To install MELPA, add
following snippet at the starting of your [[./init.el][init.el]].#+begin_src emacs-lisp
(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)
#+end_srcFollow the [[./config.org][config.org]] file for detailed list and configuration of
packages and basic settings.