|
@@ -3,13 +3,17 @@
|
|
|
;; 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.
|
|
|
- '(custom-enabled-themes (quote (deeper-blue))))
|
|
|
+ '(column-number-mode t)
|
|
|
+ '(custom-enabled-themes (quote (deeper-blue)))
|
|
|
+ '(font-use-system-font t)
|
|
|
+ '(package-selected-packages (quote (helm flycheck-checkbashisms)))
|
|
|
+ '(show-paren-mode t))
|
|
|
(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.
|
|
|
- )
|
|
|
+ '(default ((t (:family "Source Code Pro" :foundry "ADBO" :slant normal :weight normal :height 180 :width normal)))))
|
|
|
(setq org-support-shift-select t)
|
|
|
(setq org-directory "~/personal")
|
|
|
(setq org-default-notes-file "~/personal/organiser.org")
|
|
@@ -24,3 +28,4 @@
|
|
|
|
|
|
(line-number-mode 1)
|
|
|
(column-number-mode 1)
|
|
|
+(add-hook 'org-mode-hook 'visual-line-mode)
|