Skip to content

Commit

Permalink
fix(bun): run completions only for fallback installs
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexAegis committed Dec 14, 2023
1 parent 75d0a98 commit c13ce18
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"editor.mouseWheelZoom": true,
"editor.semanticHighlighting.enabled": true,
"editor.fontLigatures": true,
"editor.wordBasedSuggestions": true,
"editor.wordBasedSuggestions": "matchingDocuments",
"editor.suggest.localityBonus": true,
"editor.snippetSuggestions": "bottom",
"editor.quickSuggestionsDelay": 0,
Expand All @@ -19,7 +19,7 @@
{ "column": 120, "color": "#6666668e" }
],
"editor.codeActionsOnSave": {
"source.fixAll": true
"source.fixAll": "explicit"
},
"files.exclude": {
"**/.git": true,
Expand Down
4 changes: 3 additions & 1 deletion modules/bun/XDG_CONFIG_HOME.bun/rc.d/40-bun.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
# completions

# shellcheck disable=SC1091
. "${BUN_INSTALL}/_bun"
if [ -f "${BUN_INSTALL}/_bun" ]; then
. "${BUN_INSTALL}/_bun"
fi
2 changes: 1 addition & 1 deletion modules/pont
Submodule pont updated 1 files
+11 −11 pont.sh

0 comments on commit c13ce18

Please sign in to comment.