|
|
|
|
@ -131,6 +131,13 @@ |
|
|
|
|
#+BEGIN_SRC emacs-lisp |
|
|
|
|
;(require 'highlight-sexps) |
|
|
|
|
#+END_SRC |
|
|
|
|
Try to get along with large margins |
|
|
|
|
#+BEGIN_SRC emacs-lisp |
|
|
|
|
(setq-default left-margin-width 2 |
|
|
|
|
right-margin-width 2) |
|
|
|
|
; (set-window-buffer nil (current-buffer)) |
|
|
|
|
#+END_SRC |
|
|
|
|
|
|
|
|
|
** Mouseless |
|
|
|
|
Disable mouse interaction with emacs |
|
|
|
|
#+BEGIN_SRC emacs-lisp |
|
|
|
|
@ -1676,6 +1683,9 @@ |
|
|
|
|
(require 'helm-config) |
|
|
|
|
(helm-mode 1) |
|
|
|
|
|
|
|
|
|
(defun fix-helm-margins () |
|
|
|
|
(setq helm-left-margin-width left-margin-width)) |
|
|
|
|
|
|
|
|
|
(global-set-key-alist |
|
|
|
|
'(("M-x" . helm-M-x) |
|
|
|
|
("C-x C-f" . helm-find-files) |
|
|
|
|
@ -1688,7 +1698,7 @@ |
|
|
|
|
(helm-define-key-with-subkeys helm-find-files-map (kbd "DEL") ?\d 'helm-ff-delete-char-backward |
|
|
|
|
'(([C-c DEL] . helm-ff-run-toggle-auto-update)) |
|
|
|
|
nil 'helm-ff-delete-char-backward--exit-fn) |
|
|
|
|
|
|
|
|
|
(add-hook 'helm-after-initialize-hook 'fix-helm-margins) |
|
|
|
|
#+END_SRC |
|
|
|
|
** multiple-cursors |
|
|
|
|
#+BEGIN_SRC emacs-lisp |
|
|
|
|
|