summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README-VIM.md3
-rw-r--r--doc/fzf.txt8
2 files changed, 10 insertions, 1 deletions
diff --git a/README-VIM.md b/README-VIM.md
index a396b611..f3247bac 100644
--- a/README-VIM.md
+++ b/README-VIM.md
@@ -26,6 +26,9 @@ written as:
" If installed using Homebrew
Plug '/usr/local/opt/fzf'
+" If installed using Homebrew on Apple Silicon
+Plug '/opt/homebrew/opt/fzf'
+
" If you have cloned fzf on ~/.fzf directory
Plug '~/.fzf'
```
diff --git a/doc/fzf.txt b/doc/fzf.txt
index 62295393..6acea330 100644
--- a/doc/fzf.txt
+++ b/doc/fzf.txt
@@ -1,4 +1,4 @@
-fzf.txt fzf Last change: Mar 20 2023
+fzf.txt fzf Last change: Aug 12 2023
FZF - TABLE OF CONTENTS *fzf* *fzf-toc*
==============================================================================
@@ -32,6 +32,9 @@ depending on the package manager.
" If installed using Homebrew
set rtp+=/usr/local/opt/fzf
+ " If installed using Homebrew on Apple Silicon
+ set rtp+=/opt/homebrew/opt/fzf
+
" If you have cloned fzf on ~/.fzf directory
set rtp+=~/.fzf
<
@@ -40,6 +43,9 @@ If you use {vim-plug}{1}, the same can be written as:
" If installed using Homebrew
Plug '/usr/local/opt/fzf'
+ " If installed using Homebrew on Apple Silicon
+ Plug '/opt/homebrew/opt/fzf'
+
" If you have cloned fzf on ~/.fzf directory
Plug '~/.fzf'
<