Formatting edits, fix pass keybind
This commit is contained in:
parent
dbdb3e3f11
commit
08a16d302b
46
config.org
46
config.org
@ -630,22 +630,22 @@ and in normal-state with =ys<textobject>= or =yS<textobject>=.
|
|||||||
You can change a surrounding with =cs<old-textobject><new-textobject>=.
|
You can change a surrounding with =cs<old-textobject><new-textobject>=.
|
||||||
You can delete a surrounding with =ds<textobject>=.
|
You can delete a surrounding with =ds<textobject>=.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package evil-surround
|
(use-package evil-surround
|
||||||
:after evil
|
:after evil
|
||||||
:ensure t
|
:ensure t
|
||||||
:diminish
|
:diminish
|
||||||
:config
|
:config
|
||||||
(global-evil-surround-mode 1))
|
(global-evil-surround-mode 1))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
**** evil-escape
|
**** evil-escape
|
||||||
hit fd to escape pretty much everything
|
hit fd to escape pretty much everything
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package evil-escape
|
(use-package evil-escape
|
||||||
:ensure t
|
:ensure t
|
||||||
:diminish
|
:diminish
|
||||||
:config
|
:config
|
||||||
(setq-default evil-escape-key-sequence "fd")
|
(setq-default evil-escape-key-sequence "fd")
|
||||||
(evil-escape-mode))
|
(evil-escape-mode))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
**** evil-commentary
|
**** evil-commentary
|
||||||
[[https://github.com/linktohack/evil-commentary][github here]]
|
[[https://github.com/linktohack/evil-commentary][github here]]
|
||||||
@ -721,7 +721,7 @@ pinged.
|
|||||||
# :diminish
|
# :diminish
|
||||||
# :init
|
# :init
|
||||||
# (beacon-mode 1))
|
# (beacon-mode 1))
|
||||||
#+END_SRC
|
# #+END_SRC
|
||||||
*** ranger file manager
|
*** ranger file manager
|
||||||
Let's not use this for now
|
Let's not use this for now
|
||||||
# #+BEGIN_SRC emacs-lisp
|
# #+BEGIN_SRC emacs-lisp
|
||||||
@ -941,8 +941,8 @@ Show a custom buffer on startup
|
|||||||
(use-package ggtags
|
(use-package ggtags
|
||||||
:ensure t)
|
:ensure t)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** TODO: Make tag files do stuff
|
|
||||||
|
|
||||||
|
*** TODO: Make tag files do stuff
|
||||||
** Project Management
|
** Project Management
|
||||||
TODO: Set this up to actually work well
|
TODO: Set this up to actually work well
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
@ -964,13 +964,13 @@ See [[https://ox-hugo.scripter.co/doc/auto-export-on-saving/][Here]] for auto ex
|
|||||||
#+END_SRC
|
#+END_SRC
|
||||||
** pretty-mode
|
** pretty-mode
|
||||||
[[https://github.com/pretty-mode/pretty-mode][Redisplay parts of the Emacs buffer as pretty symbols.]]
|
[[https://github.com/pretty-mode/pretty-mode][Redisplay parts of the Emacs buffer as pretty symbols.]]
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(when window-system
|
(when window-system
|
||||||
(use-package pretty-mode
|
(use-package pretty-mode
|
||||||
:ensure t
|
:ensure t
|
||||||
:config
|
:config
|
||||||
(global-pretty-mode t)))
|
(global-pretty-mode t)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Error checking
|
** Error checking
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package flycheck
|
(use-package flycheck
|
||||||
@ -1286,13 +1286,13 @@ like two boats in a shipping channel.
|
|||||||
#+END_SRC
|
#+END_SRC
|
||||||
** pass
|
** pass
|
||||||
I use [[https://www.passwordstore.org/][=pass=]] for my password management.
|
I use [[https://www.passwordstore.org/][=pass=]] for my password management.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package ivy-pass
|
(use-package ivy-pass
|
||||||
:ensure t
|
:ensure t
|
||||||
:general
|
:general
|
||||||
(wiz-leader-def
|
(wiz-leader-def
|
||||||
"p" 'ivy-pass))
|
"P" 'ivy-pass))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Git (magit)
|
** Git (magit)
|
||||||
I hear that this is one of those emacs "killer apps"
|
I hear that this is one of those emacs "killer apps"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user