diff options
Diffstat (limited to 'Doom/.config')
-rw-r--r-- | Doom/.config/doom/init.el | 1 | ||||
-rw-r--r-- | Doom/.config/doom/modules/private/startup/README.org | 10 | ||||
-rw-r--r-- | Doom/.config/doom/modules/private/startup/config.el | 14 | ||||
-rw-r--r-- | Doom/.config/doom/org/config.org | 4 |
4 files changed, 4 insertions, 25 deletions
diff --git a/Doom/.config/doom/init.el b/Doom/.config/doom/init.el index 19e9d44..ac7bf96 100644 --- a/Doom/.config/doom/init.el +++ b/Doom/.config/doom/init.el @@ -10,7 +10,6 @@ (doom! :private ;;(oreoline) bindings - startup gentemplate narrow ;; (ocaml +lsp) 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)))) diff --git a/Doom/.config/doom/org/config.org b/Doom/.config/doom/org/config.org index e0bf129..93b20cb 100644 --- a/Doom/.config/doom/org/config.org +++ b/Doom/.config/doom/org/config.org @@ -44,6 +44,10 @@ Some quality of life things and others that I couldn't really put in one categor #+END_SRC * Package Configuration Configuration for or based heavily around specific packages that I find very important +** Modeline and startup +#+BEGIN_SRC elisp +(setq-default mode-line-format (list "%l:%c \t %P \t %+%b(" '(:eval (format "%s" major-mode)) ") \t %I \t" vc-mode mode-line-end-spaces)) +#+END_SRC ** Ido Just add vimish keybindings to ido completion #+BEGIN_SRC elisp |