Update init file

This commit is contained in:
Marcus Kammer 2019-07-12 16:33:54 +02:00
parent 07fcf9eba6
commit b3ff14d47f

21
init.el
View file

@ -54,6 +54,7 @@ There are two things you can do about this warning:
("Asia/Tokyo" "Tokyo"))))
'(fill-column 72)
'(font-lock-maximum-decoration t)
'(global-auto-revert-mode t)
'(global-font-lock-mode t)
'(global-hl-line-mode t)
'(indent-tabs-mode nil)
@ -86,7 +87,7 @@ There are two things you can do about this warning:
'(package-enable-at-startup t)
'(package-selected-packages
(quote
(ob-http ob-ipython ob-restclient linum-relative markdown-mode nord-theme restclient request restclient-test yaml-mode magit)))
(powershell helm gitconfig-mode gitignore-mode ox-rst typescript-mode ## skewer-mode ob-http ob-ipython ob-restclient linum-relative markdown-mode nord-theme restclient request restclient-test yaml-mode magit)))
'(require-final-newline t)
'(size-indication-mode nil)
'(timeclock-file "~/Documents/Diary/timelog")
@ -149,11 +150,12 @@ There are two things you can do about this warning:
(add-to-list 'load-path (expand-file-name "~/.emacs.d/__evo"))
(require 'evo-feeds)
(when (display-graphic-p)
(add-to-list 'default-frame-alist '(height . 50))
(add-to-list 'default-frame-alist '(width . 80))
(add-to-list 'default-frame-alist '(fullscreen . maximized))
;; (add-to-list 'default-frame-alist '(alpha . (96)))
))
(add-to-list 'default-frame-alist '(font . "Consolas-11"))
(add-to-list 'default-frame-alist '(height . 50))
(add-to-list 'default-frame-alist '(width . 86))
;; (add-to-list 'default-frame-alist '(fullscreen . maximized))
;; (add-to-list 'default-frame-alist '(alpha . (96)))
))
(when (eq system-type 'gnu/linux)
(setq-default line-spacing 3)
@ -172,8 +174,13 @@ There are two things you can do about this warning:
number-of-diary-entries 7)
(add-hook 'diary-display-hook 'fancy-diary-display)
(add-hook 'today-visible-calendar-hook 'calendar-mark-today)
(global-set-key "\C-cc" 'org-capture)
(global-set-key "\C-cl" 'org-store-link)
(global-set-key "\C-ca" 'org-agenda)
(global-set-key "\C-cc" 'org-capture)
(global-set-key "\C-cb" 'org-switchb)
(global-set-key (kbd "C-x g") 'magit-status)
(global-set-key (kbd "C-x M-g") 'magit-dispatch)
(setq org-todo-keywords
'((sequence "TODO" "FEEDBACK" "VERIFY" "|" "DONE" "DELEGATED")))