I use dotbot for managing my dot files now.
Check out the install.conf.yaml for my current configuration.
-
mkdir ~/projects
-
cd ~/projects
-
git clone [email protected]:mjfaga/dotfiles.git
-
Run dotfiles configuration
-
git clone [email protected]:mjfaga/dotfiles-local.git
-
Run dotfiles-local configuration
-
Reload terminal
-
sh apps.sh
-
sh macos.sh
-
Install VIM pluggins via
:PlugInstall
-
Install
asdf
pluginsasdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git asdf plugin add ruby https://github.com/asdf-vm/asdf-ruby.git asdf plugin add java https://github.com/halcyon/asdf-java.git asdf plugin add python https://github.com/asdf-community/asdf-python.git
-
Run fzf key bindings install:
$(brew --prefix)/opt/fzf/install
(Note: Don't update shell configurations) -
Configure CocConfig
-
:CocInstall coc-html
-
:CocInstall coc-tsserver
-
:CocInstall coc-json
-
:CocInstall coc-markdownlint
-
:CocInstall coc-prettier
-
:CocInstall coc-eslint
-
gem install solargraph
, then:CocInstall coc-solargraph
-
-
Run
xcode-select --install
-
Install Github Copilot
-
git clone https://github.com/github/copilot.vim ~/.config/nvim/pack/github/start/copilot.vim
-
:Copilot setup
-
:Copilot enable
-
-
Install Github CLI w/copilot
-
gh auth login
-
gh extension install github/gh-copilot
-
gh extension upgrade gh-copilot
-
-
Raycast
- System Preferences -> Keyboard -> Shortcuts -> Spotlight and disable the keyboard shortcut.
- Configure Cmd + Space as Raycast trigger
- Mark all setup tasks completed
- Enable Cloud Sync
-
Arc Browser
- Sign into account + enable sidebar sync
- General
- Check "Automatically update my Arc"
- Profiles
- Passwords
- Settings
- Disable "Offer to save passwords and passkeys"
- Settings
- Passwords
- Max
- Enable All
- Advanced
- Enable "Restore windows from previous session"
- Enable "Show full URL when Toolbar is enabled"
- Chrome Extensions
- Refined Github
- Options -> Features -> Disable "update-pr-from-base-branch"
- Refined Github
-
Sign into google accounts to enable contact sync
-
Open Photos to sync to iCloud
-
MacOS App Store
- Xcode
- OneDrive
-
Sign into 1Password
-
Turn on the SSH agent for github key signing
-
Put signing key into
.gitconfig.secret
:[user] signingkey = <value here>
-
Create a
gem/credential
file in this repo:--- :rubygems_api_key: <get from 1Password> :github: Bearer <get from 1Password>
-
Create a
bundle/config
file in this repo:--- BUNDLE_HTTPS://RUBYGEMS__PKG__GITHUB__COM/HUNTCLUB/: "mjfaga:<get from 1Password>" BUNDLE_GEMS__GRAPHQL__PRO: "<get from 1Password">
-
Install Browser Extensions
-
-
Install 1Password CLI
-
Dropbox
- Disable Preferences -> Import -> Enable camera uploads
-
Iterm
- General ->
- Window ->
- Uncheck "Adjust window when changing font size"
- Window ->
- Appearance ->
- General ->
- Theme = Minimal
- Tabs ->
- Check "Preserve window size when tab bar shows or hides"
- General ->
- Profiles ->
- Keys -> Left Option Key = Esc+
- Terminal -> Check "Unlimited scrollback"
- General -> Working Directory -> Select "Reuse previous session's directory"
- Text -> Non-ASCII Font -> Hack Nerd Font Mono, "Regular", size 13
- General ->
-
Display - turn on schedule for nightshift -> sunset to sunrise
-
System Preferences -> Displays -> set up arrangement and menu bar
-
Install Office 365
-
Install Disk Inventory X
-
Install Postgres App
-
Run
kubectl completion bash > /usr/local/etc/bash_completion.d/kubectl
if kubernetes is installed -
Create finder "open in" shortcuts:
-
Open the Automator built-in macOS app. Pick "Application".
-
Search for “Run Shell Script” in the list of actions, and paste these 2 lines:
finderPath=`osascript -e 'tell application "Finder" to get the POSIX path of (target of front window as alias)'` open -n -b "com.microsoft.VSCode" --args "$finderPath"
-
Save that to the Applications folder, for example as "VS Code icon in Finder"
-
Open Get Info for both VS Code and this new app, drag the VS Code icon
-
Keep the cmd pressed and drag to the Finder toolbar. Done.
-
Repeat for vim script, but with "Run Apple Script":
tell application "Finder" if exists Finder window 1 then set currentDir to target of Finder window 1 as alias else set currentDir to desktop as alias end if set filePath to the POSIX path of currentDir end tell tell application "iTerm" set newWindow to (create window with default profile) tell current session of newWindow write text "cd " & filePath write text "vim ." end tell end tell
-
Open Get Info for this new app and drag the vim-icon.svg from this repo.
-
Keep the cmd pressed and drag to the Finder toolbar. Done.
-
-
For any
rails
+heroku
repos, configure parity
Suggestions/improvements welcome!