-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
131 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
window: | ||
option_as_alt: Both | ||
|
||
font: | ||
normal: | ||
family: Hack | ||
|
||
live_config_reload: true |
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,4 @@ | ||
[git] | ||
autoCommit = true | ||
autoPush = true | ||
|
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 |
---|---|---|
|
@@ -34,6 +34,10 @@ | |
clean = git-lfs clean -- %f | ||
smudge = git-lfs smudge -- %f | ||
|
||
[user] | ||
name = Jason Morganson | ||
email = [email protected] | ||
|
||
[credential "https://github.com"] | ||
helper = | ||
helper = !gh auth git-credential | ||
|
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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
source ~/.local/share/nushell/default_env.nu | ||
|
||
$env.NU_LIB_DIRS = ($env.NU_LIB_DIRS | default [] | append ($env.HOME | path join ".config" "nushell" "scripts")) | ||
bash -c $"source ($env.HOME)/.profile && env" | ||
| lines | ||
| parse "{name}={value}" | ||
| filter { |var| (not $var.name in $env) or $var.value != ($env | get $var.name) } | ||
| where not name in ["_", "LAST_EXIT_CODE", "DIRS_POSITION"] | ||
| transpose --header-row | ||
| into record | ||
| load-env | ||
|
||
$env.PATH = ( | ||
$env.PATH | ||
| split row (char esep) | ||
| prepend "/usr/local/bin" | ||
| prepend ($env.HOME | path join '.local' 'bin') | ||
) |
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,9 @@ | ||
module theme { | ||
export def dark [] { | ||
$env.config.color_config = $dark_theme | ||
} | ||
|
||
export def light [] { | ||
$env.config.color_config = $light_theme | ||
} | ||
} |
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,22 @@ | ||
[git] | ||
|
||
# Git repositories that you want to pull and push | ||
repos = [ | ||
"~/Code/*/**", | ||
"~/.local/share/chezmoi" | ||
] | ||
|
||
# Arguments to pass Git when pulling repositories | ||
pull_arguments = "--rebase --autostash" | ||
|
||
# Arguments to pass Git when pushing repositories | ||
push_arguments = "--all" | ||
|
||
[misc] | ||
|
||
# Skip sending a notification at the end of a run (default: false) | ||
skip_notify = true | ||
|
||
# Commands to run after anything | ||
[post_commands] | ||
"Update brew bundle" = "/opt/homebrew/bin/brew bundle dump --force --file /Users/jasonmorganson/Library/Mobile Documents/com~apple~CloudDocs/Homebrew/Brewfile" |
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,2 @@ | ||
simplified_ui true | ||
|
Empty file.
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
25 changes: 25 additions & 0 deletions
25
private_Library/LaunchAgents/io.github.topgrade-rs.topgrade.plist
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,25 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>Label</key> | ||
<string>io.github.topgrade-rs.topgrade</string> | ||
|
||
<key>ProgramArguments</key> | ||
<array> | ||
<string>/opt/homebrew/bin/topgrade</string> | ||
</array> | ||
|
||
<key>StartInterval</key> | ||
<integer>10800</integer> <!-- Number of seconds in 3 hours --> | ||
|
||
<key>RunAtLoad</key> | ||
<true/> | ||
|
||
<key>StandardErrorPath</key> | ||
<string>/tmp/io.github.topgrade-rs.topgrade/err</string> | ||
|
||
<key>StandardOutPath</key> | ||
<string>/tmp/io.github.topgrade-rs.topgrade/out</string> | ||
</dict> | ||
</plist> |
1 change: 1 addition & 0 deletions
1
private_Library/private_Application Support/symlink_nushell.tmpl
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 @@ | ||
{{ env "HOME" }}/.config/nushell |