diff options
author | Bryson Steck <brysonsteck@protonmail.com> | 2023-01-25 10:47:00 -0700 |
---|---|---|
committer | Bryson Steck <brysonsteck@protonmail.com> | 2023-01-25 10:47:00 -0700 |
commit | 290247d424e6a91fa04b69a1c17ace583bd92290 (patch) | |
tree | c0454fead2a4b924c3a785e23ac9d4a66f9314e9 /bash | |
parent | 17569393a56fc8a0df3842571a81dad5087ae462 (diff) | |
download | dotfiles-290247d424e6a91fa04b69a1c17ace583bd92290.tar dotfiles-290247d424e6a91fa04b69a1c17ace583bd92290.tar.gz dotfiles-290247d424e6a91fa04b69a1c17ace583bd92290.tar.bz2 |
update some vim stuff mostly
Diffstat (limited to 'bash')
-rw-r--r-- | bash/.bash/04-other.bash | 2 | ||||
-rw-r--r-- | bash/.bash_profile | 3 | ||||
-rw-r--r-- | bash/.bashrc | 1 |
3 files changed, 3 insertions, 3 deletions
diff --git a/bash/.bash/04-other.bash b/bash/.bash/04-other.bash index ec258e1..63271b5 100644 --- a/bash/.bash/04-other.bash +++ b/bash/.bash/04-other.bash @@ -3,3 +3,5 @@ # if [[ -z $TMUX ]] && [[ -n $SSH_TTY ]]; then # exec tmux new-session -A -s ssh # fi +# +export DOTNET_CLI_TELEMETRY_OPTOUT="true" diff --git a/bash/.bash_profile b/bash/.bash_profile index 6539cd9..d006e75 100644 --- a/bash/.bash_profile +++ b/bash/.bash_profile @@ -1,7 +1,7 @@ #!/bin/bash # .bash_profile -PATH=$PATH:$HOME/.local/bin:$HOME/bin:$HOME/.cargo/bin +PATH=$PATH:$HOME/.local/bin:$HOME/bin:$HOME/.cargo/bin:$HOME/.dotnet/tools # Get the aliases and functions if [ -f ~/.bashrc ]; then @@ -14,7 +14,6 @@ export TERMINAL=/usr/bin/alacritty export BROWSER=/usr/bin/librewolf-bin export PATH -export PATH=$PATH:/home/bryson/.spicetify complete -cf doas source /usr/share/autojump/autojump.bash source /usr/share/bash-completion/completions/fzf diff --git a/bash/.bashrc b/bash/.bashrc index 3187d52..821a3fb 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -13,4 +13,3 @@ fi DEVKITPRO=/opt/devkitpro DEVKITARM=/opt/devkitpro/devkitARM DEVKITPPC=/opt/devkitpro/devkitPPC -export PATH=$PATH:/home/bryson/.spicetify |