Browse Source

added git-gutter, git timemachine

master
Marc Pohling 6 years ago
parent
commit
828141a96c
1 changed files with 40 additions and 4 deletions
  1. 44
      config.org

44
config.org

@ -16,11 +16,9 @@
* Stuff to add / to fix
- smartparens
The last time I tried it it was weird and blocked me occasionally (like I couldn't remove brackets)
a sane default configuration for navigation, manipulation etc. is still necessary
- Spaceline / Powerline or similar
I want a pretty status bar!
- Company
It's too active and autocompletes normal text (don't!). Also it completes on RET, which is annoying when I finish a sentence with RET and company "completes" it to a longer word
- Markdown mode
There might be more than one package for this.
@ -608,7 +606,26 @@ Colorize colors as text with their value
)
#+end_src
** Magit
Highlight parens etc. for improved readability
#+begin_src emacs-lisp
(use-package rainbow-delimiters
:ensure t
:config
(add-hook 'prog-mode-hook 'rainbow-delimiters-mode)
)
#+end_src
** Smartparens
Smartparens is a beast on its own, so it's worth having a dedicated section for it
#+begin_src emacs-lisp
(use-package smartparens
:ensure t
:diminish smartparens-mode
:config
(add-hook 'prog-mode-hook 'smartparens-mode)
)
#+end_src
** Git
[[https://magit.vc/manual/magit/index.html][Link]]
I want to do git stuff here, not in a separate terminal window
@ -639,6 +656,25 @@ Colorize colors as text with their value
)
#+end_src
Display line changes in gutter based on git history. Enable it everywhere
[[https://github.com/syohex/emacs-git-gutter][Source]]
#+begin_src emacs-lisp
(use-package git-gutter
:ensure t
:config
(global-git-gutter-mode t)
:diminish git-gutter-mode
)
#+end_src
Time machine lets me step through the history of a file as recorded in git.
[[https://github.com/pidu/git-timemachine][Source]]
#+begin_src emacs-lisp
(use-package git-timemachine
:ensure t
)
#+end_src
** Company Mode
Complete Anything!

Loading…
Cancel
Save