Browse Source

Configure fzf window height

master
10sr 5 years ago
parent
commit
36fc72596f
Signed by: 10sr GPG Key ID: C384BB17CBB19347
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      emacs.el

+ 6
- 1
emacs.el View File

@@ -738,7 +738,11 @@ found, otherwise returns nil."
;; Too slow!
;; (set-variable 'fzf/executable "sk")
;; (set-variable 'fzf/args "--color bw --print-query")
;; Modified from hardcoded default to include directories, hidden files, and root directory
;; Modified from hardcoded default to include:
;; - directories
;; - hidden files
;; - root directory (.)
;; - parent directory (..)
(let* ((find (if (executable-find "bfs")
;; Breadth-first find https://github.com/tavianator/bfs
"bfs"
@@ -754,6 +758,7 @@ found, otherwise returns nil."
"| "
"cut -b3-")))
(setenv "FZF_DEFAULT_COMMAND" defcmd))
(set-variable 'fzf/window-height 45)
(define-key ctl-x-map (kbd "C-f") 'fzf)
)



Loading…
Cancel
Save