From dd05f08e1e79711ec3a7ca70043a7164100310dd Mon Sep 17 00:00:00 2001 From: dx Date: Sat, 18 Jul 2020 00:57:15 +0100 Subject: ~clean up config.org --- Doom/.config/doom/org/config.org | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) (limited to 'Doom/.config/doom') diff --git a/Doom/.config/doom/org/config.org b/Doom/.config/doom/org/config.org index e25c433..9aa2912 100644 --- a/Doom/.config/doom/org/config.org +++ b/Doom/.config/doom/org/config.org @@ -40,21 +40,19 @@ Some quality of life things and others that I couldn't really put in one categor #+BEGIN_SRC elisp (load (expand-file-name (concat user-emacs-directory "modules/lang/org/config.el"))) #+END_SRC -* Package Configuration -Configuration for or based heavily around specific packages that I find very important -** Modeline and startup +* Use package +Load up a ton of packages #+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)) +(add-hook 'doom-after-init-modules-hook + #'(lambda () (interactive) + (use-package projectile) + (use-package counsel))) #+END_SRC -** Ido -Just add vimish keybindings to ido completion +* Package Configuration +Configuration for or based heavily around specific packages that I find very important +** Modeline #+BEGIN_SRC elisp -(map! - :map (ido-common-completion-map ido-file-completion-map ido-buffer-completion-map) - "C-k" #'ido-prev-match - "C-j" #'ido-next-match) - -(setq ido-ignore-buffers '("\\` " "^\\*ESS\\*" "^\\*[Hh]elp" "^\\*.*Completions\\*$" "^\\*tramp" "^\\*cvs-" "^*Ido")) +(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 ** DAP *** Function -- cgit v1.2.3-13-gbd6f