From f89e45b93e49249df891ee0135828ee2dc3d83f6 Mon Sep 17 00:00:00 2001 From: Ramakrishnan Muthukrishnan Date: Mon, 23 Jan 2017 16:09:00 +0530 Subject: [PATCH] turn on font-lock, tomorrow theme, orgmode --- init.el | 12 ++++++++++-- packages.el | 3 +-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/init.el b/init.el index 500f2a8..f9779c7 100644 --- a/init.el +++ b/init.el @@ -3,13 +3,16 @@ ;; y-or-n instead of yes-or-no (defalias 'yes-or-no-p 'y-or-n-p) +;; theme +(require 'color-theme-sanityinc-tomorrow) + ;; Don't show startup msg, don't store tilde files (setq make-backup-files nil) (setq initial-scratch-message "") (setq inhibit-startup-message t) ;; turn OFF syntax highlighting -(global-font-lock-mode 0) +; (global-font-lock-mode 0) ;; cursor bar (setq-default cursor-type '(bar . 2)) @@ -35,8 +38,13 @@ ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(initial-frame-alist (quote ((fullscreen . maximized)))) + '(org-todo-keywords + (quote + ((sequence "TODO(t)" "INPROGRESS(p)" "WAIT(w)" "|" "DONE(d)" "CANCELLED(c)" "REVISIT(r)")))) '(send-mail-function (quote smtpmail-send-it))) +(setq org-agenda-files '("~/notes/")) + ;; Who use the bar to scroll? (when (display-graphic-p) (progn @@ -102,7 +110,7 @@ c-basic-offset 4) ;; haskell -(add-hook 'haskell-mode-hook 'intero-mode) +;; (add-hook 'haskell-mode-hook 'intero-mode) ;; hlint (add-to-list 'load-path "~/.emacs.d/hs-lint") diff --git a/packages.el b/packages.el index c150774..506bd88 100644 --- a/packages.el +++ b/packages.el @@ -43,8 +43,7 @@ flycheck-rust flycheck-haskell racer - intero - debpaste)) + color-theme-sanityinc-tomorrow)) ; install the missing packages (dolist (package package-list) -- 2.37.2