https://github.com/darkdefender27/dotemacs
.emacs.d for clojure development
https://github.com/darkdefender27/dotemacs
clojure dotfiles emacs
Last synced: about 2 months ago
JSON representation
.emacs.d for clojure development
- Host: GitHub
- URL: https://github.com/darkdefender27/dotemacs
- Owner: darkdefender27
- Created: 2018-07-08T15:28:25.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-09T09:16:38.000Z (almost 8 years ago)
- Last Synced: 2025-06-12T23:03:02.647Z (about 1 year ago)
- Topics: clojure, dotfiles, emacs
- Language: Emacs Lisp
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## dotemacs
To get a taste of what Emacs has to offer, you might want to check out the short screencasts at http://emacsrocks.com/.
## Installing
### Get Emacs
#### OS X
Install vanilla Emacs as a Mac app from http://emacsformacosx.com. Other options, like Aquamacs, are supposed to make Emacs more “Mac-like,” but they’re problematic in the long run because they’re set up so differently from standard Emacs that it’s difficult to use the Emacs manual or follow along with tutorials.
#### Ubuntu
Follow the instructions at https://launchpad.net/~cassou/+archive/emacs.
#### Windows
You can find a binary at http://ftp.gnu.org/gnu/emacs/windows/. After you download and unzip the latest version, you can run the Emacs executable under bin\runemacs.exe.
Open emacs and you're good to go. Happy Hacking!
## Packages Used
- use-package => *Package Manager*
- exec-path-from-shell => *Sets up your path and environment variables from your shell's configuration (.bashprofile, .zshenv, ...)*
- company => *The autocompletion engine*
- cider => *Connecting a Clojure buffer to a REPL*
- clojure-mode-extra-font-locking => *Better syntax highlighting for Clojure code*
- aggressive-indent => *Indenting code as you type*
- paredit => *Treats s-expressions as blocks for easier navigation/editing*
- rainbow-delimiters => *Sets the same color for matching parentheses. Icing on the
cake :)*