diff options
author | dx <aryadevchavali1@gmail.com> | 2020-07-18 00:57:15 +0100 |
---|---|---|
committer | dx <aryadevchavali1@gmail.com> | 2020-07-18 00:57:15 +0100 |
commit | dd05f08e1e79711ec3a7ca70043a7164100310dd (patch) | |
tree | 8316d6215dac805a606ea3b0a150280cc61731b8 /Doom/.config/doom/org/config.org | |
parent | 77985fb2622a4cbd63a6be71d70d566ac5303634 (diff) | |
download | dotfiles-dd05f08e1e79711ec3a7ca70043a7164100310dd.tar.gz dotfiles-dd05f08e1e79711ec3a7ca70043a7164100310dd.tar.bz2 dotfiles-dd05f08e1e79711ec3a7ca70043a7164100310dd.zip |
~clean up config.org
Diffstat (limited to 'Doom/.config/doom/org/config.org')
-rw-r--r-- | Doom/.config/doom/org/config.org | 22 |
1 files changed, 10 insertions, 12 deletions
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 |