aboutsummaryrefslogtreecommitdiff
path: root/Doom/.config/doom/modules/private
diff options
context:
space:
mode:
authordx <aryadevchavali1@gmail.com>2020-07-16 19:11:20 +0100
committerdx <aryadevchavali1@gmail.com>2020-07-16 19:11:20 +0100
commit4bbf47fc4e4a52f00a181a92f95c37c778c85e5b (patch)
treeaec0e504d70c4d7fe4d2ad713ebda55955aed94c /Doom/.config/doom/modules/private
parent6bdf6db3b453cff3a3f46f1b8f33cac6426f98ac (diff)
downloaddotfiles-4bbf47fc4e4a52f00a181a92f95c37c778c85e5b.tar.gz
dotfiles-4bbf47fc4e4a52f00a181a92f95c37c778c85e5b.tar.bz2
dotfiles-4bbf47fc4e4a52f00a181a92f95c37c778c85e5b.zip
~decomposed startup module into personal config
Diffstat (limited to 'Doom/.config/doom/modules/private')
-rw-r--r--Doom/.config/doom/modules/private/startup/README.org10
-rw-r--r--Doom/.config/doom/modules/private/startup/config.el14
2 files changed, 0 insertions, 24 deletions
diff --git a/Doom/.config/doom/modules/private/startup/README.org b/Doom/.config/doom/modules/private/startup/README.org
deleted file mode 100644
index 68b4376..0000000
--- a/Doom/.config/doom/modules/private/startup/README.org
+++ /dev/null
@@ -1,10 +0,0 @@
-#+TITLE: private/startup
-#+DATE: July 15, 2020
-
-* Description
-Basically setup the default Emacs mode-line and the scratch buffer for ease of use.
-This replaces the =modeline= and =doom-dashboard= modules as it leverages the default Emacs utilities.
-* Prerequisites
-Emacs of some kind, preferably 27 just for the sake of preserving versioning.
-* Requirements
-None
diff --git a/Doom/.config/doom/modules/private/startup/config.el b/Doom/.config/doom/modules/private/startup/config.el
deleted file mode 100644
index 48c4f5f..0000000
--- a/Doom/.config/doom/modules/private/startup/config.el
+++ /dev/null
@@ -1,14 +0,0 @@
-;;; private/startup/config.el -*- lexical-binding: t; -*-
-
-(defun +startup/create-scratch-message ()
- "Generate a string for the scratch buffer"
- (format "Welcome to Emacs! (。◕‿◕。)
-Load time was %s
-Time of startup: %s"
- (emacs-init-time)
- (current-time-string (current-time))))
-
-(add-hook 'doom-first-input-hook
- #'(lambda ()
- (setq-default mode-line-format (list "%l:%c %P \t %+%b(" '(:eval (format "%s" major-mode)) ") \t %I \t" vc-mode mode-line-end-spaces))
- (setq-default initial-scratch-message (+startup/create-scratch-message))))