-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathminimal-init.el
More file actions
48 lines (39 loc) · 1.49 KB
/
minimal-init.el
File metadata and controls
48 lines (39 loc) · 1.49 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
;;; minimal-init.el -- for minimal emacs configuration
;;; Code:
(setq debug-on-error t
debug-on-signal nil
debug-on-quit nil)
;; because of XFCE clipboard manager bug
;; (setq x-select-enable-clipboard-manager nil)
;; faces
(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.
'(completions-common-part ((t (:foreground "forest green"))))
'(completions-first-difference ((t (:bold t :weight bold :foreground "salmon"))))
'(minibuffer-prompt ((t (:foreground "dark cyan" :weight bold)))))
;; configs
(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.
'(column-number-mode t)
'(ido-mode (quote buffer) nil (ido))
'(inhibit-startup-screen t)
'(savehist-mode t nil (savehist))
'(show-paren-mode t)
'(transient-mark-mode t)
'(truncate-lines t)
'(uniquify-buffer-name-style (quote post-forward) nil (uniquify))
'(windmove-wrap-around t))
;; (add-to-list 'load-path (expand-file-name "~/.emacs.d/lisp"))
;; navigate thru windows using M-<arrow>
(windmove-default-keybindings 'meta)
;; lazy-bones
(defalias 'yes-or-no-p 'y-or-n-p)
;; Local Variables:
;; flycheck-disabled-checkers: (emacs-lisp emacs-lisp-checkdoc)
;; End: