Browse Source

added evil-goggles for visual hints when editing

master
Marc Pohling 6 years ago
parent
commit
5809ec9f56
1 changed files with 15 additions and 2 deletions
  1. 17
      config.org

17
config.org

@ -407,7 +407,6 @@ The default value is -77, which is weird for smaller width windows. I'd rather h
(setq org-tags-column 45)
#+end_src
** Org babel languages
This code block is linux specific. Loading languages which aren't available seems to be a problem
@ -458,7 +457,6 @@ I want plots!
(add-hook 'org-mode-hook 'org-display-inline-images)
#+end_src
** Org babel/source blocks
I like to have source blocks properly syntax highlighted and with the editing popup window staying within the same window so all the windows don't jump around. Also, having the top and bottom trailing lines in the block is a waste of space, so we can remove them
@ -706,6 +704,7 @@ Ivy-Hydra adds stuff in minibuffer when you press C-o
)
#+end_src
* Personal Finances
I picked ledger for my personal accounting and will test if it's beneficial over gnucash.
..and don't activate the modules at work.
@ -782,6 +781,7 @@ deactivate
It is accessable on this URL: [[http://127.0.0.1:5000][Fava]]
* Programming
** Common things
List of plugins and settings which are shared between the language plugins
@ -1340,7 +1340,19 @@ _v_ verify setup _f_ check _s_ select
; :config
; (evil-collection-init))
#+END_SRC
Evil-goggles give visual hints when editing texts, so it's more obvious what is actually happening. [[https://github.com/edkolev/evil-goggles][Source]]
#+BEGIN_SRC emacs-lisp
(use-package evil-goggles
:after evil
:ensure t
:config
(evil-goggles-mode)
(evil-goggles-use-diff-faces))
#+END_SRC
* Window Handling
Some tools to easen the navigation, creation and deletion of windows
@ -1397,6 +1409,7 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer."
(define-key minibuffer-local-isearch-map [escape] 'minibuffer-keyboard-quit)
(global-set-key [escape] 'evil-exit-emacs-state)
#+END_SRC
* Quality of Life
** Default Window Size
#+BEGIN_SRC emacs-lisp

Loading…
Cancel
Save