Public » Miscellaneous » Dotfiles Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in tip and @

start building up emacs again

Changeset 66efb6b31443

Parent 619398820b2b

by Profile picture of Benjamin PollackBenjamin Pollack

Changes to 2 files · Browse files at 66efb6b31443 Showing diff from parent 619398820b2b Diff from another changeset...

Change 1 of 1 Show Entire File .hgignore Stacked
 
1
2
3
4
5
6
 
7
8
9
 
1
2
3
 
 
 
4
5
6
7
@@ -1,9 +1,7 @@
 syntax: glob  .netrwhist  emacs.d/auto-save-list -emacs.d/el-get/.* -emacs.d/el-get/evil/ -emacs.d/el-get/undo-tree/ +emacs.d/elpa  emacs.d/eshell/history  emacs.d/eshell/lastdir  fish/fish_history
Change 1 of 1 Show Entire File emacs.d/​init.el Stacked
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@@ -0,0 +1,35 @@
+(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(backup-by-copying t) + '(backup-directory-alist (quote (("." . "~/.emacs-backups")))) + '(ido-enable-flex-matching t) + '(ido-everywhere t) + '(inhibit-startup-screen t) + '(require-final-newline t) + '(server-mode t) + '(show-paren-mode t) + '(tool-bar-mode nil)) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + ) + +(global-set-key "\C-x\C-m" 'execute-extended-command) +(global-set-key "\C-w" 'backwards-kill-word) +(global-set-key "\C-x\C-k" 'kill-region) +(global-set-key "\M-s" 'isearch-forward-regexp) +(global-set-key "\M-r" 'isearch-backward-regexp) +(global-set-key "\C-m" 'newline-and-indent) +(global-set-key "\C-\\" 'comment-or-uncomment-region) +(global-set-key "\C-x\C-b" 'buffer-menu) + +(require 'package) +(setq package-archives + '(("gnu" . "https://elpa.gnu.org/packages/") + ("marmalade" . "https://marmalade-repo.org/packages/") + ("melpa" . "http://melpa.milkbox.net/packages/")))