62f897fdf5
* .emacs only loops through .emacs.d and runs the *.el files there. * files are automatically compiled before loading. But only if it hasn't already been compiled. * all emacs el files, save for the startup scripts, have been moved to .emacs.d/elisp
5 lines
271 B
EmacsLisp
5 lines
271 B
EmacsLisp
(global-set-key "\C-m" 'newline-and-indent)
|
|
; Automatically indent on newline
|
|
(global-set-key (kbd "C-x n r") 'narrow-to-region)
|
|
(global-set-key [C-tab] 'hs-toggle-hiding)
|
|
(global-set-key (kbd "<f9>") 'compile)
|