diff options
| author | LostNeophyte <[email protected]> | 2023-01-17 07:11:29 +0100 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2023-01-17 01:11:29 -0500 | 
| commit | 5b8bfc85110c427bdadaf41a539c43a1c55fe5ae (patch) | |
| tree | dc2ff2f0f7a1d25dbd697ff524ad5cd7df0dfaf5 /utils/installer | |
| parent | de2f4bb776f77a98a3bce67de7df2769f60607b4 (diff) | |
fix(installer): only install treesitter-cli if it's missing (#3740)
Diffstat (limited to 'utils/installer')
| -rwxr-xr-x | utils/installer/install.sh | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/utils/installer/install.sh b/utils/installer/install.sh index 5519e8a7..e55e7214 100755 --- a/utils/installer/install.sh +++ b/utils/installer/install.sh @@ -39,8 +39,11 @@ declare -a __lvim_dirs=(  declare -a __npm_deps=(    "neovim" -  "tree-sitter-cli"  ) +# treesitter installed with brew causes conflicts #3738 +if ! command -v tree-sitter &>/dev/null; then +  __npm_deps+=("tree-sitter-cli") +fi  declare -a __pip_deps=(    "pynvim" | 
