Compare commits

...

4 Commits

Author SHA1 Message Date
contrapunctus e71ce0b7e9 Add dired-sidebar configuration 2022-11-13 23:09:47 +05:30
contrapunctus 058fe309b1 Add keybinding for imenus 2022-11-13 22:58:07 +05:30
contrapunctus 1d2ad549a7 Remove unused key 2022-11-13 22:57:56 +05:30
contrapunctus 144f5ec579 Define right-hand keys for window operations 2022-11-13 22:57:39 +05:30
1 changed files with 19 additions and 1 deletions

View File

@ -652,6 +652,11 @@ Add these common operations to the hydra -
("1" delete-other-windows "delete others" :color red)
("2" split-window-below "split below" :color red)
("3" split-window-right "split right" :color red)
("7" delete-other-windows "delete others" :color red)
("8" split-window-below "split below" :color red)
("9" split-window-right "split right" :color red)
("]" text-scale-increase "zoom in" :color red)
("[" text-scale-decrease "zoom out" :color red)
("\\" (text-scale-increase 0) "zoom reset" :color red)
@ -665,6 +670,7 @@ Add these common operations to the hydra -
("I" contrapunctus-info-hydra/body "Info")
("k" (kill-buffer (current-buffer)) "kill" :color red)
("m" my-buffer-switch "Switch buffers")
("n" imenus "navigation")
("N" contrapunctus-line-display-hydra/body "line display")
("o" save-buffer "save") ;; QWERTY s
("s" save-buffer "save")
@ -1769,7 +1775,7 @@ Doesn't work in my current main browser (Tor Browser), and thus barely used of l
"< -" [?←] "- >" [?→]
"^ |" [?↑] "| ^" [?↑]
"v |" [?↓] "| v" [?↓]
", \\" [?λ] "l" [?λ]
"l" [?λ]
"f" [?ƒ]
"d q o" [?“]
"d q c" [?”]
@ -5314,6 +5320,18 @@ Create advice for =lispy-pair= - if =lispy--in-string-or-comment-p= is true, sel
:init (add-hook 'xref-backend-functions #'dumb-jump-xref-activate))
#+END_SRC
*** dired-sidebar
:PROPERTIES:
:CUSTOM_ID: dired-sidebar
:END:
#+BEGIN_SRC emacs-lisp
(use-package dired-sidebar
:config (setq dired-sidebar-no-delete-other-windows t
dired-sidebar-should-follow-file t
dired-sidebar-follow-file-idle-delay 0.2
dired-sidebar-follow-file-timer 0.2))
#+END_SRC
** lisp
:PROPERTIES:
:CREATED: 2022-01-13T21:03:15+0530