Summary of dotfiles/.emacs.el settings.
Installed to: ~/.emacs.el
MELPA and Marmalade are added as package archives and package-initialize is called.
(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/") t)
(add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/"))| Key | Action |
|---|---|
Ctrl-Z |
Undo (overrides the default suspend-frame) |
Uses auto-complete-config.
TABtriggers completion- Use
Ctrl-N/Ctrl-Pto navigate the completion menu - Fuzzy matching enabled
- Enabled modes:
text-mode,fundamental-mode,org-mode,yatex-mode
jedi.el provides Python code completion.
- Auto-triggers on
.(dot) withjedi:complete-on-dot <C-tab>unbound from jedi to use for window navigation- Completion sources: filenames + jedi direct (word completion from same-mode buffers removed)
| Setting | Effect |
|---|---|
show-paren-mode |
Highlight matching parentheses |
global-linum-mode |
Show line numbers in all buffers (3-digit width) |
(setq load-path (cons "~/.emacs.d/elisp" load-path))Place local Emacs Lisp files in ~/.emacs.d/elisp/.