2013-10-14 08:50:56 +02:00
|
|
|
(require 'uniquify)
|
2013-10-19 22:44:30 +02:00
|
|
|
|
2017-10-15 13:30:10 +02:00
|
|
|
;; Make Helm go!
|
|
|
|
(require 'helm-config)
|
2017-10-15 16:31:39 +02:00
|
|
|
|
2017-10-15 20:24:28 +02:00
|
|
|
;; Enable fuzzy matching in Helm.
|
|
|
|
;; The wiki recommends the first two options for globally enabling fuzzy
|
|
|
|
;; matching, however this does not actually work.
|
|
|
|
;; Setting all the options helps!
|
2017-10-15 16:31:39 +02:00
|
|
|
(setq helm-mode-fuzzy-match t
|
2017-10-15 20:24:28 +02:00
|
|
|
helm-completion-in-region-fuzzy-match t
|
|
|
|
helm-M-x-fuzzy-match t
|
|
|
|
helm-buffers-fuzzy-matching t
|
|
|
|
)
|
2017-10-15 13:30:10 +02:00
|
|
|
(global-set-key (kbd "M-x") #'helm-M-x)
|
|
|
|
(global-set-key (kbd "C-x r b") #'helm-filtered-bookmarks)
|
|
|
|
(global-set-key (kbd "C-x C-f") #'helm-find-files)
|
|
|
|
(helm-mode 1)
|
|
|
|
|
2017-11-12 20:24:21 +01:00
|
|
|
;; Move files to trash when deleting
|
|
|
|
(setq delete-by-moving-to-trash t)
|
2013-07-08 01:15:05 +02:00
|
|
|
|
2017-11-12 20:24:21 +01:00
|
|
|
;; We don't live in the 80s, but we're also not a shitty web app.
|
2013-08-03 15:36:05 +02:00
|
|
|
(setq gc-cons-threshold 20000000)
|
|
|
|
|
2013-10-14 08:50:56 +02:00
|
|
|
(setq uniquify-buffer-name-style 'forward)
|
|
|
|
|
2013-10-17 14:17:38 +02:00
|
|
|
; Fix some defaults
|
2014-02-01 21:20:10 +01:00
|
|
|
(setq visible-bell nil
|
2013-07-08 01:15:05 +02:00
|
|
|
inhibit-startup-message t
|
|
|
|
color-theme-is-global t
|
|
|
|
sentence-end-double-space nil
|
|
|
|
shift-select-mode nil
|
|
|
|
uniquify-buffer-name-style 'forward
|
|
|
|
whitespace-style '(face trailing lines-tail tabs)
|
|
|
|
whitespace-line-column 80
|
2013-10-20 20:05:13 +02:00
|
|
|
default-directory "~"
|
2013-08-05 16:18:56 +02:00
|
|
|
fill-column 80
|
2017-11-13 10:23:52 +01:00
|
|
|
ediff-split-window-function 'split-window-horizontally)
|
2014-01-30 14:26:52 +01:00
|
|
|
|
2013-07-08 01:15:05 +02:00
|
|
|
(add-to-list 'safe-local-variable-values '(lexical-binding . t))
|
|
|
|
(add-to-list 'safe-local-variable-values '(whitespace-line-column . 80))
|
|
|
|
|
2013-08-07 00:49:20 +02:00
|
|
|
(set-default 'indent-tabs-mode nil)
|
|
|
|
|
2013-08-05 16:18:56 +02:00
|
|
|
;; UTF-8 please
|
|
|
|
(setq locale-coding-system 'utf-8) ; pretty
|
|
|
|
(set-terminal-coding-system 'utf-8) ; pretty
|
|
|
|
(set-keyboard-coding-system 'utf-8) ; pretty
|
|
|
|
(set-selection-coding-system 'utf-8) ; please
|
|
|
|
(prefer-coding-system 'utf-8) ; with sugar on top
|
|
|
|
|
|
|
|
;; Make emacs behave sanely (overwrite selected text)
|
|
|
|
(delete-selection-mode 1)
|
|
|
|
|
2017-11-12 20:24:21 +01:00
|
|
|
;; Keep your temporary files in tmp, emacs!
|
2013-07-29 00:53:08 +02:00
|
|
|
(setq auto-save-file-name-transforms
|
|
|
|
`((".*" ,temporary-file-directory t)))
|
2017-11-13 10:23:52 +01:00
|
|
|
(setq backup-directory-alist
|
|
|
|
`((".*" . ,temporary-file-directory)))
|
2013-07-29 00:53:08 +02:00
|
|
|
|
2013-07-08 01:15:05 +02:00
|
|
|
(remove-hook 'kill-buffer-query-functions 'server-kill-buffer-query-function)
|
2013-08-07 00:49:20 +02:00
|
|
|
|
2014-10-21 19:37:19 +02:00
|
|
|
(provide 'settings)
|