I hereby claim:
- I am nickcrew on github.
- I am nickferguson (https://keybase.io/nickferguson) on keybase.
- I have a public key ASCOWQdZrPzOGpF5MairHLyWt_eiyjK00Otjz5DVweu7jQo
To claim this, I am signing this object:
| # Config generated by Ghostty Config | |
| shell-integration = zsh | |
| title-report = true | |
| quick-terminal-size = 50% | |
| clipboard-read = allow | |
| copy-on-select = true | |
| window-subtitle = working-directory | |
| window-colorspace = display-p3 | |
| window-save-state = always |
| """""""""""""""""""""""""""""""""""""""""" | |
| " | |
| " Minimal Sane Defaults for Classic Vim | |
| " | |
| """""""""""""""""""""""""""""""""""""""""" | |
| set nocompatible | |
| syntax on | |
| filetype on |
| # | |
| # A minimal bash configuration to carry around with you | |
| # | |
| # !! Plus some bonus extras like fancy git prompt and bookmarks | |
| # | |
| # | |
| set -o vi # unless you're one of *those* | |
| ### Keybase proof | |
| I hereby claim: | |
| * I am nickcrew on github. | |
| * I am nicholascrew (https://keybase.io/nicholascrew) on keybase. | |
| * I have a public key ASA1_n3P69eE3hE2-kqYcspjnwBuWYy-qneI8JcWPQuBwQo | |
| To claim this, I am signing this object: |
I hereby claim:
To claim this, I am signing this object:
| settings.theme = ` | |
| .sk_theme { | |
| font-family: SF Pro; | |
| font-size: 12pt; | |
| background: #393551; | |
| color: #9ccfd8; | |
| } | |
| .sk_theme tbody { | |
| color: #fff; | |
| } |
| #!/usr/bin/env zsh | |
| # | |
| # Disable the “Are you sure you want to open this application?” dialog | |
| defaults write com.apple.LaunchServices LSQuarantine -bool false | |
| # Disable Resume system-wide | |
| defaults write NSGlobalDomain NSQuitAlwaysKeepWindows -bool false |
| #!/usr/bin/env zsh | |
| proto=git | |
| remote_url=git@github.com: | |
| dots_branch=master | |
| if [[ ! -z $1 ]]; then | |
| proto=$1 | |
| if [[ $proto == "https" ]]; then | |
| remote_url=https://github.com/ |
| #!/usr/bin/env zsh | |
| # | |
| # Install dotfile dependencies | |
| # | |
| # {{{ Lib functions | |
| local function dots_show_usage () { | |
| echo "USAGE:" | |
| echo " dots-tool-installer [neovim|devtools|langs|fonts]" | |
| echo "" |
| { | |
| "configurations": { | |
| "python-debug": { | |
| "default": true, | |
| "adapter": "debugpy", | |
| "filetypes": [ "python" ], | |
| "breakpoints": { | |
| "exception": { | |
| "all": "N", | |
| "uncaught": "Y" |