-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
usual wave of package updates ; minor git batch and my kitty changes (#…
…68) * bash docker desktop safety net * Correct git batch on synk on main * 🔧 increase treesitter plugins to knob 4 * 🔧 disable treesitter for markdown since it messages with NoSpell in code blocks * 🔧 package updates * 🔧 only load cmp_dap if knob enabled * 📦️ update packages ; switch magnet to rectangle * 📦️ Add treesitter playground * 📦️ update packages * 🐛 realign local branch with remote when we've jumped onto exist local missing from remote * 📦️ update packages * Disable ts_rainbow due to treesitter error * 📦️ update brew * 📦️ update nvim packages * Support offline mode for git batch * Add note window for my-kitty * closeme without neovim close * Don't worry about closing todo in closeme * 🔧 start rust config * 📦️ update packages * ✨ replace space in computer name with - * 📦️brew and nvim package updates
- Loading branch information
Showing
27 changed files
with
1,675 additions
and
1,347 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#!/usr/bin/env bash | ||
|
||
# | ||
# Install nightly version of rust-analyzer. | ||
# | ||
|
||
set -e | ||
|
||
$(shim) && cd ${ME} && . bin/i.sh | ||
|
||
nightlyInstallation=~/local/rust-analyzer/$(date +%Y%m%d) | ||
if [ ! -f ${nightlyInstallation}/rust-analyzer-aarch64-apple-darwin ] ; then | ||
log:: "installing nightly rust-analyzer ${nightlyInstallation}" | ||
nightlyRelease=~/Downloads/rust-analyzer-aarch64-apple-darwin.gz | ||
if [ ! -f "${nightlyRelease}" ] ; then | ||
log:: "downloading nightly" | ||
curl -fLo $nightlyRelease \ | ||
https://github.com/rust-lang/rust-analyzer/releases/download/nightly/rust-analyzer-aarch64-apple-darwin.gz | ||
fi | ||
|
||
mkdir -p ${nightlyInstallation} | ||
cd ${nightlyInstallation} | ||
cp "${nightlyRelease}" . | ||
gunzip rust-analyzer-aarch64-apple-darwin.gz | ||
chmod +x rust-analyzer-aarch64-apple-darwin | ||
|
||
[ -L ~/bin/rust-analyzer ] && rm ~/bin/rust-analyzer | ||
ln -s ${nightlyInstallation}/rust-analyzer-aarch64-apple-darwin ~/bin/rust-analyzer | ||
else | ||
if [ ! -f ~/bin/rust-analyzer ] ; then | ||
log:: "linking latest nightly to ~/bin/rust-analyzer" | ||
if [ ! -d ~/bin ] ; then | ||
log:: "Creating ~/bin" | ||
mkdir ~/bin | ||
fi | ||
ln -s ${nightlyInstallation}/rust-analyzer-aarch64-apple-darwin ~/bin/rust-analyzer | ||
else | ||
log:: "nightly rust-analyzer ${nightlyInstallation} already installed" | ||
fi | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,6 +75,7 @@ brew "wget" | |
|
||
cask "kitty" | ||
cask "iterm2" | ||
cask "rectangle" | ||
cask "wezterm" | ||
|
||
# | ||
|
Oops, something went wrong.