Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to install emacs23 on Mac OSX without GUI

Tags:

emacs

macos

What's the best way to install Emacs23 on Mac OSX. I want to launch it from the terminal, without any X-windows or other GUI business.

I tried http://emacsformacosx.com/ but that launches a Mac application. I just want the text-only version inside of Terminal.

Thanks.

like image 373
mark Avatar asked Mar 24 '11 02:03

mark


3 Answers

I would think that any GNU Emacs would accept the -nw command line option; the http://emacsformacosx.com/ version included.

You can then use a shell alias or wrapper script to do that by default.

e.g. for bash, you could use alias emacs="emacs -nw" (and add it to your .bashrc file to make it persistent).

like image 153
phils Avatar answered Nov 04 '22 18:11

phils


if you use macports:

sudo port install emacs

like image 42
dting Avatar answered Nov 04 '22 19:11

dting


Homebrew has Emacs packages available.

like image 25
Coxy Avatar answered Nov 04 '22 18:11

Coxy