Personal emacs config
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.6 KiB

  1. ;;; better-defaults-autoloads.el --- automatically extracted autoloads
  2. ;;
  3. ;;; Code:
  4. (add-to-list 'load-path (directory-file-name
  5. (or (file-name-directory #$) (car load-path))))
  6. ;;;### (autoloads nil "better-defaults" "better-defaults.el" (0 0
  7. ;;;;;; 0 0))
  8. ;;; Generated autoloads from better-defaults.el
  9. (ido-mode t)
  10. (setq ido-enable-flex-matching t)
  11. (menu-bar-mode -1)
  12. (when (fboundp 'tool-bar-mode) (tool-bar-mode -1))
  13. (when (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))
  14. (autoload 'zap-up-to-char "misc" "\
  15. Kill up to, but not including ARGth occurrence of CHAR." t)
  16. (require 'uniquify)
  17. (setq uniquify-buffer-name-style 'forward)
  18. (require 'saveplace)
  19. (setq-default save-place t)
  20. (global-set-key (kbd "M-/") 'hippie-expand)
  21. (global-set-key (kbd "C-x C-b") 'ibuffer)
  22. (global-set-key (kbd "M-z") 'zap-up-to-char)
  23. (global-set-key (kbd "C-s") 'isearch-forward-regexp)
  24. (global-set-key (kbd "C-r") 'isearch-backward-regexp)
  25. (global-set-key (kbd "C-M-s") 'isearch-forward)
  26. (global-set-key (kbd "C-M-r") 'isearch-backward)
  27. (show-paren-mode 1)
  28. (setq-default indent-tabs-mode nil)
  29. (setq x-select-enable-clipboard t x-select-enable-primary t save-interprogram-paste-before-kill t apropos-do-all t mouse-yank-at-point t require-final-newline t visible-bell t load-prefer-newer t ediff-window-setup-function 'ediff-setup-windows-plain save-place-file (concat user-emacs-directory "places") backup-directory-alist `(("." \, (concat user-emacs-directory "backups"))))
  30. ;;;***
  31. ;; Local Variables:
  32. ;; version-control: never
  33. ;; no-byte-compile: t
  34. ;; no-update-autoloads: t
  35. ;; coding: utf-8
  36. ;; End:
  37. ;;; better-defaults-autoloads.el ends here