Merge branch 'master' of gitlab.com:chriscochrun/dotemacs
This commit is contained in:
commit
6badbaadee
10
README.org
10
README.org
|
@ -155,7 +155,7 @@ This evil-collection package includes a lot of other evil based things.
|
|||
#+end_src
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(use-package general
|
||||
(use-package general
|
||||
:init
|
||||
(general-evil-setup)
|
||||
:config
|
||||
|
@ -170,6 +170,7 @@ This evil-collection package includes a lot of other evil based things.
|
|||
"s" '(:ignore t :which-key "search")
|
||||
"o" '(:ignore t :which-key "open")
|
||||
"bs" '(consult-buffer :which-key "buffer search")
|
||||
"bd" '(kill-this-buffer :which-key "kill buffer")
|
||||
"tt" '(consult-theme :which-key "choose theme")
|
||||
"ff" '(find-file :which-key "find file")
|
||||
"fs" '(save-buffer :which-key "save")
|
||||
|
@ -325,7 +326,7 @@ Marginalia makes for some great decoration to our minibuffer completion items. W
|
|||
** Org Mode
|
||||
Need to setup auto tangle yes
|
||||
#+begin_src emacs-lisp
|
||||
(use-package org
|
||||
(use-package org
|
||||
:config
|
||||
(setq org-startup-indented t)
|
||||
(defun chris/org-babel-tangle-config ()
|
||||
|
@ -335,13 +336,12 @@ Need to setup auto tangle yes
|
|||
(org-babel-tangle))))
|
||||
|
||||
(add-hook 'org-mode-hook (lambda () (add-hook 'after-save-hook #'chris/org-babel-tangle-config))))
|
||||
|
||||
#+end_src
|
||||
** Magit
|
||||
Use magit, because why wouldn't you? duh!
|
||||
#+begin_src emacs-lisp
|
||||
(use-package magit
|
||||
(use-package magit
|
||||
:commands (magit-status magit-get-current-branch)
|
||||
:custom
|
||||
(magit-display-buffer-function #'magit-display-buffer-same-window-except-diff-v1))
|
||||
(magit-display-buffer-function #'magit-display-buffer-same-window-except-diff-v1))
|
||||
#+end_src
|
||||
|
|
Loading…
Reference in a new issue