Skip to content

Commit

Permalink
Update git submodule update command
Browse files Browse the repository at this point in the history
  • Loading branch information
myty committed Mar 11, 2024
1 parent 4d49b6d commit e8828d6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nushell/aliases.nu
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ alias gp = git push
alias ac = and-cli
alias gs = git submodule
alias gsf = git submodule foreach
alias gsu = git submodule update
alias gsu = git submodule update --recursive --remote
alias python = python3
alias py = python3
7 changes: 5 additions & 2 deletions nushell/env.nu
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
$env.EDITOR = 'code'

if ("~/.nushellrc" | path exists) {
source "~/.nushellrc"
let home_path = if (sys).host.name == "Windows" {$env.USERPROFILE} else {$env.HOME}
let nushellrc_path = $"($home_path)/.nushellrc"

if (($nushellrc_path | path exists) == true) {
nu $nushellrc_path
}

# Starship
Expand Down
2 changes: 1 addition & 1 deletion nushell/nu_scripts
Submodule nu_scripts updated 53 files
+1 −1 before_v0.60/stdlib_candidate/get-row.nu
+66 −0 custom-completions/ack/ack-completions.nu
+2 −2 custom-completions/as/as-completions.nu
+0 −65 custom-completions/auto-generate/completions/ack.nu
+0 −67 custom-completions/auto-generate/completions/fsharpc.nu
+0 −48 custom-completions/auto-generate/completions/fsharpi.nu
+64 −0 custom-completions/bat/bat-completions.nu
+51 −0 custom-completions/cargo-make/cargo-make-completions.nu
+23 −18 custom-completions/curl/curl-completions.nu
+69 −0 custom-completions/fsharpc/fsharpc-completions.nu
+48 −0 custom-completions/fsharpi/fsharpi-completions.nu
+2 −2 custom-completions/gh/gh-completions.nu
+1 −1 custom-completions/git/git-completions.nu
+1 −1 custom-completions/godoc/godoc-completions.nu
+6 −4 custom-completions/mysql/mysql-completions.nu
+72 −0 custom-completions/rg/rg-completions.nu
+1 −1 custom-completions/scoop/scoop-completions.nu
+4 −2 custom-completions/xgettext/xgettext-completions.nu
+1 −1 custom-completions/zellij/zellij-completions.nu
+3 −3 make_release/nu_release.nu
+36 −8 make_release/release-note/list-merged-prs
+2 −2 modules/argx/argx.nu
+64 −0 modules/clone-all/README.md
+47 −0 modules/clone-all/clone-all.nu
+2 −12 modules/cwdhist/cwdhist.nu
+46 −18 modules/docker/docker.nu
+1 −1 modules/formats/to-ini.nu
+99 −52 modules/git/git-v2.nu
+1 −1 modules/git/git.nu
+43 −10 modules/kubernetes/kubernetes.nu
+1 −1 modules/log/log.nu
+3 −3 modules/network/ssh.nu
+51 −65 modules/nvim/nvim.nu
+1 −1 modules/virtual_environments/nu_msvs/README.md
+2 −2 modules/virtual_environments/nu_msvs/nu_msvs.nu
+1 −1 modules/weather/weatherdark.nu
+0 −0 nu-hooks/nu-hooks/command_not_found/README.md
+0 −0 nu-hooks/nu-hooks/command_not_found/did_you_mean.nu
+0 −0 nu-hooks/nu-hooks/direnv/config.nu
+0 −0 nu-hooks/nu-hooks/direnv/direnv.nu
+0 −0 nu-hooks/nu-hooks/dynamic-load/dynamic-load.nu
+0 −0 nu-hooks/nu-hooks/filesystem/autojump.nu
+0 −0 nu-hooks/nu-hooks/rusty-paths/rusty-paths.nu
+2 −3 nu-hooks/nupm.nuon
+1 −1 sourced/api_wrappers/wolframalpha.nu
+1 −1 sourced/cool-oneliners/pwd-short.nu
+1 −1 sourced/github/branch-protections/branch-protections.nu
+1 −0 sourced/gitlab/gitlab.nu
+1 −1 sourced/misc/nu_defs.nu
+1 −1 sourced/update-path.nu
+1 −1 sourced/webscraping/shell_stars.nu
+114 −0 themes/nu-themes/catppuccin-latte.nu
+8 −0 themes/nupm.nuon

0 comments on commit e8828d6

Please sign in to comment.