Skip to content

Commit 93f1be5

Browse files
author
pspieker
committed
WIP
1 parent 52c795b commit 93f1be5

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

Diff for: apps.txt

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Just a list of applications not installed via homebrew that are useful:
2+
- BetterSnapTool
3+
- Discord
4+
- Flux
5+
- Chrome
6+
- iTerm 2
7+
- Slack
8+
- Spotify
9+
- Todoist
10+
- VSCode
11+
- VLC
12+
- WhatsApp
13+
- Zoom
14+

Diff for: bashrc_main

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ alias vim="nvim"
88
# ----- GIT COMMANDS -----
99
alias gs="git status -uno"
1010
alias gacp="git add . && git commit -m 'WIP' && git push origin HEAD"
11+
alias glp="git log --pretty=oneline"
1112
# ----- END GIT COMMANDS -----
1213

1314
# ----- PATH Appendings -----

Diff for: setup.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
# This file exists both for literal development environment config purposes (to programmically redo my setup)
44
# and also for human config purposes :) - to remind me how my setup works + tips and tricks
55
#
6-
# NOTE: need to mark this script as executable with: chmod 755 ./setup.sh
6+
# NOTE:
7+
# When you clone this repo, you need to mark this script as executable with: chmod 755 ./setup.sh
78

89
# ----- HOMEBREW Installation -----
910
# xcode-select --install # Apple's Command Line Tools - needed for a bunch of random Homebrew things
@@ -36,6 +37,8 @@ echo "Finished configuing new bash!"
3637
# brew install ripgrep # best empirical backend for both fzf (filename searching) and ack (file content searching)
3738
# brew install node
3839
# brew install yt-dlp/taps/yt-dlp # faster version of youtube download
40+
# brew install --cask emacs # thinking of trying this
41+
# brew install watchman # for sorbet
3942

4043
# Configuring personal git things
4144
git config --global user.email "[email protected]"

Diff for: vscode_settings.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
2-
"workbench.colorTheme": "Monokai Dimmed",
2+
"workbench.colorTheme": "Visual Studio Dark",
33
"vim.insertModeKeyBindings": [
44
{
55
"before": ["j", "j"],
66
"after": ["<Esc>"]
77
}
8-
]
8+
],
9+
"security.workspace.trust.untrustedFiles": "open",
10+
"sorbet.enabled": true
911
}

0 commit comments

Comments
 (0)