Minor refactors & comment revision
This commit is contained in:
parent
c8cfa31a1e
commit
996188250b
9 changed files with 18 additions and 28 deletions
|
@ -49,4 +49,3 @@ https://mediatemple.net"
|
|||
(set-popup-rules!
|
||||
'(("^\\*doom-regex\\*$" :size 4 :quit nil)
|
||||
("^\\*doom-regex-groups" :side 'left :size 28 :select nil :quit nil)))
|
||||
|
||||
|
|
|
@ -125,6 +125,7 @@ be negative.")
|
|||
|
||||
|
||||
(after! helm-rg
|
||||
(setq helm-rg-display-buffer-normal-method #'pop-to-buffer)
|
||||
(set-popup-rule! "^helm-rg-" :ttl nil :select t :size 0.45)
|
||||
(map! :map helm-rg-map
|
||||
"C-c C-e" #'helm-rg--bounce)
|
||||
|
|
|
@ -128,6 +128,8 @@ evil-ex-specific constructs, so we disable it solely in evil-ex."
|
|||
(use-package! ivy-rich
|
||||
:after ivy
|
||||
:config
|
||||
(setq ivy-rich-parse-remote-buffer nil)
|
||||
|
||||
(when (featurep! +icons)
|
||||
(cl-pushnew '(+ivy-rich-buffer-icon)
|
||||
(cadr (plist-get ivy-rich-display-transformers-list
|
||||
|
|
|
@ -46,4 +46,3 @@ If the depth is 2, the first two directories are removed: net.lissner.game.")
|
|||
:mode "\\.g\\(?:radle\\|roovy\\)$"
|
||||
:config
|
||||
(set-eval-handler! 'groovy-mode "groovy"))
|
||||
|
||||
|
|
|
@ -7,11 +7,11 @@ This module adds [[https://github.com/ethereum/solidity][Solidity]] support thro
|
|||
+ Gas estimation (~C-c C-g~)
|
||||
|
||||
* Table of Contents :TOC:
|
||||
- [[Module Flags][Module Flags]]
|
||||
- [[Prerequisites][Prerequisites]]
|
||||
- [[Solc][Solc]]
|
||||
- [[Solium][Solium]]
|
||||
- [[TODO][TODO]]
|
||||
- [[#module-flags][Module Flags]]
|
||||
- [[#prerequisites][Prerequisites]]
|
||||
- [[#solc][Solc]]
|
||||
- [[#solium][Solium]]
|
||||
- [[#todo][TODO]]
|
||||
|
||||
* Module Flags
|
||||
This module provides no flags.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
;;; term/vterm/config.el -*- lexical-binding: t; -*-
|
||||
|
||||
(use-package! vterm
|
||||
:when (fboundp 'module-load)
|
||||
:when module-file-suffix
|
||||
:defer t
|
||||
:preface (setq vterm-install t)
|
||||
:config
|
||||
|
|
|
@ -199,13 +199,6 @@ the command buffer."
|
|||
(setq win (get-buffer-window (get-buffer (help-buffer)))))
|
||||
(delete-window win))))
|
||||
|
||||
;; `helm-ag'
|
||||
(defadvice! +popup--helm-pop-to-buffer-a (orig-fn &rest args)
|
||||
:around #'helm-ag--edit
|
||||
(pop-to-buffer
|
||||
(save-window-excursion (apply orig-fn args)
|
||||
(current-buffer)))))
|
||||
|
||||
|
||||
;;;###package Info
|
||||
(defadvice! +popup--switch-to-info-window-a (&rest _)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue