From 1d4ea773010441637b2b6840880b9a3498018efb Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcus-kammer@users.noreply.gitlab.com> Date: Wed, 18 Sep 2019 14:10:12 +0200 Subject: [PATCH] Update init --- init.el | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/init.el b/init.el index 6cf32cef..250d6940 100755 --- a/init.el +++ b/init.el @@ -1,6 +1,6 @@ ;; (add-to-list 'custom-theme-load-path (expand-file-name "~/.emacs.d/bundle/nord-theme/")) (add-to-list 'load-path (expand-file-name "~/.emacs.d/bundle")) -(global-unset-key "\C-z") + ;; Added by Package.el. This must come before configurations of ;; installed packages. Don't delete this line. If you don't want it, ;; just comment it out by adding a semicolon to the start of the line. @@ -76,9 +76,11 @@ There are two things you can do about this warning: '(global-auto-revert-mode t) '(global-font-lock-mode t) '(global-hl-line-mode t) + '(icomplete-mode t) '(indent-tabs-mode nil) '(inferior-lisp-program "/usr/bin/clisp" t) '(inhibit-startup-screen t) + '(initial-frame-alist nil) '(line-number-mode t) '(line-spacing 3) '(linum-relative-backend (quote display-line-numbers-mode)) @@ -102,12 +104,12 @@ There are two things you can do about this warning: ("doughellmann" "https://doughellmann.com/blog/feed/" nil 3600) ("KDE" "https://dot.kde.org/rss.xml" nil 3600) ("Metaebene" "https://metaebene.me/feed/" nil 3600) - ("Heise Newsticker" "https://www.heise.de/rss/heise-atom.xml" nil 3600) ("Stack Exchange" "https://emacs.stackexchange.com/feeds" nil 3600) ("Stallman" "https://stallman.org/rss/rss.xml" nil 3600) ("Python PEP" "https://www.python.org/dev/peps/peps.rss/" nil 3600)))) '(nord-comment-brightness 15) '(nord-region-highlight "snowstorm") + '(nord-uniform-mode-lines t) '(org-agenda-files (quote ("~/Documents/Journal"))) '(org-babel-load-languages (quote @@ -158,7 +160,7 @@ There are two things you can do about this warning: ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. ) -;; (when (display-graphic-p) (add-to-list 'default-frame-alist '(font . "Roboto Mono-11.0"))) + ;; UTF-8 FTW (prefer-coding-system 'utf-8) (set-keyboard-coding-system 'utf-8) @@ -173,11 +175,6 @@ There are two things you can do about this warning: ;; I got sick of typing "yes" (defalias 'yes-or-no-p 'y-or-n-p) -;; Turn off chrome -(dolist (mode '(menu-bar-mode tool-bar-mode scroll-bar-mode)) - (when (fboundp mode) (funcall mode -1))) - -;; custom packages (when (eq system-type 'darwin) (when (display-graphic-p) ;;(set-default-font "RobotoMono Nerd Font 13") @@ -212,13 +209,6 @@ There are two things you can do about this warning: (add-hook 'diary-display-hook 'fancy-diary-display) (add-hook 'today-visible-calendar-hook 'calendar-mark-today) -(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"))) (put 'narrow-to-region 'disabled nil) (put 'narrow-to-page 'disabled nil) @@ -250,6 +240,19 @@ There are two things you can do about this warning: (lambda (status) (switch-to-buffer-other-window (current-buffer)))) ) +;; ==================== GLOBAL KEYS ==================== ;; +(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) +(global-unset-key "\C-z") +;; ================= ALWAYS AT THE END ================= ;; +;; Turn off chrome +(dolist (mode '(menu-bar-mode tool-bar-mode scroll-bar-mode)) + (when (fboundp mode) (funcall mode -1))) + ;; Local Variables: ;; mode: emacs-lisp ;; coding: utf-8-unix