Skip to content

z-ji/.emacs.d

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

An emacs configuration

Install

  1. Install emacs, of course, I prefer build from source:
    • build from source in macOS
      git clone git://git.savannah.gnu.org/emacs.git
      ./configure --without-pop
      #see https://brew.sh/ to install brew
      brew install autoconf automake
      make
      make install
      #drop next-step/Emacs.app to Applications and you can see it in Launchpad
              
  2. install the configuration
    curl -sSL https://raw.githubusercontent.com/ji-zhou/.emacs.d/master/install.sh | sh
        

Local config

To add your own customization, create a file ~/.emacs.d/site-lisp/config/init-local.el which looks like this:

... your code here ...

(provide 'init-local)

Update

git pull && git submodule update --init --recursive