Add qda bundle
This commit is contained in:
parent
d0bfc6c254
commit
3b90e126a7
1 changed files with 10 additions and 0 deletions
10
bundle/bundle--qda.el
Normal file
10
bundle/bundle--qda.el
Normal file
|
@ -0,0 +1,10 @@
|
|||
(use-package subed
|
||||
:config
|
||||
;; Disable automatic movement of point by default
|
||||
(add-hook 'subed-mode-hook 'subed-disable-sync-point-to-player)
|
||||
;; Remember cursor position between sessions
|
||||
(add-hook 'subed-mode-hook 'save-place-local-mode)
|
||||
;; Break lines automatically while typing
|
||||
(add-hook 'subed-mode-hook 'turn-on-auto-fill)
|
||||
;; Break lines at 40 characters
|
||||
(add-hook 'subed-mode-hook (lambda () (setq-local fill-column 40))))
|
Loading…
Add table
Reference in a new issue