booklearner / dot-emacs-d

Artisanal and from-scratch Emacs configuration repository. Mostly a reference and you probably don't want to run it.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dot-emacs-d

Custom Emacs configuration. I'm currently using Emacs 28.x with the native compilation branch on macOS Monterey.

Getting Started

Install Emacs with nix (see nixconfig:

{
  # ...
  environment = {
    systemPackages = with pkgs; [
      emacsNativeComp
      # ...
    ];
  };
  # ...
}

No further setup is required (e.g. don't need to install libgccjit manually)

Check out this repository to either ~/.emacs.d and start emacs as usual or somewhere else and start emacs from within this directly, pointing to init.el.

$ git clone git@github.com:booklearner/dot-emacs-d.git
$ cd dot-emacs-d
$ emacs -q --load init.el

Alternatively, I keep my config under ~/src/dot-emacs-d, so I've symlinked my init.el file:

$ ln -s ~/src/dot-emacs-d/init.el ~/.emacs.d/init.el

License

BSD-3-Clause

About

Artisanal and from-scratch Emacs configuration repository. Mostly a reference and you probably don't want to run it.

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Emacs Lisp 100.0%