X-Git-Url: https://git.distorted.org.uk/~mdw/profile/blobdiff_plain/ee5598ca7f13962784323ab4625d44412f3f3de6..78100945d50c60134a63b6f704c643e58ad7e2b7:/emacs diff --git a/emacs b/emacs index f47f77b..b1f17e1 100644 --- a/emacs +++ b/emacs @@ -102,6 +102,13 @@ (setq rmail-display-summary t) (setq rmail-file-name "~/Mail/rmail") +;; --- Customization --- + +(setq custom-file "~/.emacs-custom") +(trap (load custom-file)) + +(trap (load "~/.emacs-local")) + ;; --- Internationalization twiddling --- (trap @@ -160,6 +167,7 @@ '("-print0 | xargs -0r ls -ld" . "ld")) (setq bookmark-save-flag 0) ;Save bookmarks automatically (setq Info-fontify-maximum-menu-size 60000) +(setq set-mark-command-repeat-pop t) (setq ispell-program-name "aspell" ispell-local-dictionary "en_GB-ize-w_accents" flyspell-default-dictionary "en_GB-ize-w_accents" @@ -318,40 +326,40 @@ ;; --- Global keymap changes --- (trap - (windmove-default-keybindings) - (global-set-key [?\C-x ?w left] 'windmove-left) - (global-set-key [?\C-x ?w ?h] 'windmove-left) - (global-set-key [?\C-x ?w up] 'windmove-up) - (global-set-key [?\C-x ?w ?k] 'windmove-up) - (global-set-key [?\C-x ?w down] 'windmove-down) - (global-set-key [?\C-x ?w ?j] 'windmove-down) - (global-set-key [?\C-x ?w right] 'windmove-right) - (global-set-key [?\C-x ?w ?l] 'windmove-right) - (setq windmove-wrap-around t)) + (windmove-default-keybindings)) +(setq windmove-wrap-around t) (trap (iswitchb-mode)) +(global-set-key [?\C-x ?w left] 'windmove-left) +(global-set-key [?\C-x ?w ?h] 'windmove-left) +(global-set-key [?\C-x ?w up] 'windmove-up) +(global-set-key [?\C-x ?w ?k] 'windmove-up) +(global-set-key [?\C-x ?w down] 'windmove-down) +(global-set-key [?\C-x ?w ?j] 'windmove-down) +(global-set-key [?\C-x ?w right] 'windmove-right) +(global-set-key [?\C-x ?w ?l] 'windmove-right) +(global-set-key [?\C-x ?t ?i] 'timeclock-in) +(global-set-key [?\C-x ?t ?c] 'timeclock-change) +(global-set-key [?\C-x ?t ?o] 'timeclock-out) +(global-set-key [?\C-x ?t ?r] 'timeclock-reread-log) +(global-set-key [?\C-x ?t ?w] 'timeclock-workday-remaining-string) +(global-set-key [?\C-x ?t ?s] 'timeclock-status-string) (global-set-key [?\M-#] 'calc-dispatch) -(global-set-key [f4] 'query-replace-regexp) -(global-set-key [f5] 'goto-line) -(global-set-key [f6] 'auto-fill-mode) -(global-set-key [f7] 'occur) -(global-set-key [f8] 'undo) -(global-set-key [f9] 'mdw-divvy-window) +(global-set-key [?\C-x ?/] 'auto-fill-mode) +(global-set-key [?\C-x ?w ?d] 'mdw-divvy-window) (global-set-key [insertchar] 'overwrite-mode) (global-set-key [?\C-x ?m] 'vm-mail) (global-set-key [?\C-x ?\C-n] 'skel-create-file) (global-set-key [?\C-x ?4 ?n] 'skel-create-file-other-window) (global-set-key [?\C-x ?5 ?n] 'skel-create-file-other-frame) (global-set-key [delete] 'delete-char) -(global-set-key [?\C-[ ?\C-m] 'call-last-kbd-macro) (global-set-key [?\M-q] 'mdw-fill-paragraph) (global-set-key [?\C-h ?\C-m] 'manual-entry) +(global-set-key [C-M-backspace] 'backward-kill-sexp) (global-set-key [mode-line C-mouse-1] 'mouse-tear-off-window) (global-set-key [vertical-scroll-bar C-down-mouse-1] 'mouse-drag-vertical-line) (global-set-key [vertical-scroll-bar C-mouse-1] #'(lambda () (interactive))) -(global-set-key [mouse-4] 'mdw-wheel-up) -(global-set-key [mouse-5] 'mdw-wheel-down) ;; --- Recognising types of files --- @@ -488,6 +496,9 @@ (setq-default py-indent-offset 2) (add-hook 'python-mode-hook 'mdw-fontify-python t) +(setq py-python-command-args `("-i" "-colors" ,(if mdw-black-background + "Linux" + "LightBG"))) (setq-default tcl-indent-level 2) (add-hook 'tcl-mode-hook 'mdw-fontify-tcl t) @@ -530,11 +541,6 @@ (add-hook 'lisp-interaction-mode-hook 'mdw-fontify-lispy t) (add-hook 'slime-repl-mode-hook 'mdw-fontify-lispy t) (add-hook 'lisp-mode-hook 'mdw-common-lisp-indent t) -(trap - (if (not mdw-fast-startup) - (progn - (require 'slime-autoloads) - (slime-setup '(slime-autodoc))))) (add-hook 'inferior-lisp-mode-hook #'(lambda () (local-set-key "\C-m" 'comint-send-and-indent)) t) @@ -568,6 +574,12 @@ ;;;----- SLIME setup -------------------------------------------------------- +(trap + (if (not mdw-fast-startup) + (progn + (require 'slime-autoloads) + (slime-setup '(slime-autodoc slime-c-p-c))))) + (let ((stuff '((cmucl ("cmucl")) (sbcl ("sbcl") :coding-system utf-8-unix) (clisp ("clisp") :coding-system utf-8-unix)))) @@ -583,6 +595,14 @@ (cons head slime-lisp-implementations)))))) (setq slime-default-lisp 'sbcl) +;;;----- Blogging ----------------------------------------------------------- + +(setq weblogger-config-alist + '(("vox" + ("user" . "mdw") + ("server-url" . "http://vox.distorted.org.uk/admin/mt-xmlrpc.cgi") + ("weblog" . "1")))) + ;;;----- Shell mode --------------------------------------------------------- ;; --- Make the shell mode aware of my prompt --- @@ -595,6 +615,7 @@ ;; --- Notice passwords, and make C-a work right --- (add-hook 'shell-mode-hook #'mdw-sh-mode-setup) +(setq shell-font-lock-keywords nil) (add-hook 'term-mode-hook #'mdw-term-mode-setup)