dev: updating pr7002 from pr
This commit is contained in:
commit
6f87cc0b7a
4 changed files with 12 additions and 5 deletions
|
@ -13,7 +13,9 @@
|
|||
:in PATH
|
||||
Sets what directory to base the search out of. Defaults to the current project's root.
|
||||
:recursive BOOL
|
||||
Whether or not to search files recursively from the base directory."
|
||||
Whether or not to search files recursively from the base directory.
|
||||
:args LIST
|
||||
Arguments to be appended to `consult-ripgrep-args'."
|
||||
(declare (indent defun))
|
||||
(unless (executable-find "rg")
|
||||
(user-error "Couldn't find ripgrep in your PATH"))
|
||||
|
@ -29,7 +31,7 @@
|
|||
"--path-separator / --smart-case --no-heading "
|
||||
"--with-filename --line-number --search-zip "
|
||||
"--hidden -g !.git -g !.svn -g !.hg "
|
||||
(mapconcat #'shell-quote-argument args " ")))
|
||||
(mapconcat #'identity args " ")))
|
||||
(prompt (if (stringp prompt) (string-trim prompt) "Search"))
|
||||
(query (or query
|
||||
(when (doom-region-active-p)
|
||||
|
|
5
modules/lang/idris/doctor.el
Normal file
5
modules/lang/idris/doctor.el
Normal file
|
@ -0,0 +1,5 @@
|
|||
;;; lang/idris/doctor.el -*- lexical-binding: t; -*-
|
||||
|
||||
(when (require 'idris-mode nil t)
|
||||
(unless (executable-find idris-interpreter-path)
|
||||
(warn! "Cannot find the idris interpreter. Most features will not work.")))
|
|
@ -7,7 +7,7 @@
|
|||
;; Example:
|
||||
;; ((nil . ((ssh-deploy-root-local . "/local/path/to/project")
|
||||
;; (ssh-deploy-root-remote . "/ssh:user@server:/remote/project/")
|
||||
;; (ssh-deploy-on-explicit-save . t))))
|
||||
;; (ssh-deploy-on-explicit-save . 1))))
|
||||
;;
|
||||
;; Note: `ssh-deploy-root-local' is optional, and will resort to
|
||||
;; `doom-project-root' if unspecified.
|
||||
|
@ -20,7 +20,7 @@
|
|||
ssh-deploy-remote-changes-handler)
|
||||
:init
|
||||
(setq ssh-deploy-revision-folder (concat doom-cache-dir "ssh-revisions/")
|
||||
ssh-deploy-on-explicit-save t
|
||||
ssh-deploy-on-explicit-save 1
|
||||
ssh-deploy-automatically-detect-remote-changes nil)
|
||||
|
||||
;; Make these safe as file-local variables
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
;;; ui/modeline/packages.el
|
||||
|
||||
(unless (modulep! +light)
|
||||
(package! doom-modeline :pin "93f240f7a0bf35511cfc0a8dd75786744b4bcf77"))
|
||||
(package! doom-modeline :pin "bf880ae56f3f6aab7bd334de9bd9b455c63a24c0"))
|
||||
(package! anzu :pin "5abb37455ea44fa401d5f4c1bdc58adb2448db67")
|
||||
(when (modulep! :editor evil)
|
||||
(package! evil-anzu :pin "d1e98ee6976437164627542909a25c6946497899"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue