holy fuck it finally works
This commit is contained in:
parent
f15a7c68e1
commit
ea829fbfa7
@ -62,7 +62,7 @@ esac
|
|||||||
|
|
||||||
# General
|
# General
|
||||||
# Get $HOME quick
|
# Get $HOME quick
|
||||||
alias ~='cd ~/;clear'
|
alias ~='cd $HOME;clear'
|
||||||
# A Nice display of all files in a directory
|
# A Nice display of all files in a directory
|
||||||
alias ll='ls -hog'
|
alias ll='ls -hog'
|
||||||
# Above but...different I'm sure
|
# Above but...different I'm sure
|
||||||
@ -78,7 +78,7 @@ alias fucking='sudo'
|
|||||||
# Install bat. It's better.
|
# Install bat. It's better.
|
||||||
alias cat='bat'
|
alias cat='bat'
|
||||||
# Source this very file
|
# Source this very file
|
||||||
alias src='source ~/.bashrc'
|
alias src='source $HOME/.bashrc'
|
||||||
# Big Boy edit something
|
# Big Boy edit something
|
||||||
alias svim='sudo vim'
|
alias svim='sudo vim'
|
||||||
# Ping but with sounds
|
# Ping but with sounds
|
||||||
|
2
.bashrc
2
.bashrc
@ -175,4 +175,4 @@ extract () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export PATH="$HOME/.cargo/bin:$HOME/.local/bin:$PATH"
|
export PATH="$HOME/.cargo/bin:$HOME/.local/bin:$PATH"
|
||||||
export CDPATH=:..:~:~/dock:/dock
|
export CDPATH=:..:$HOME:$HOME/dock:/dock
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
ln -s .bashrc $HOME/.bashrc
|
ln -s $PWD/.bashrc $HOME/.bashrc
|
||||||
ln -s .bash_aliases $HOME/.bash_aliases
|
ln -s $PWD/.bash_aliases $HOME/.bash_aliases
|
||||||
ln -s .bash_docker $HOME/.bash_docker
|
ln -s $PWD/.bash_docker $HOME/.bash_docker
|
||||||
ln -s .bash_functions $HOME/.bash_functions
|
ln -s $PWD/.bash_functions $HOME/.bash_functions
|
||||||
touch $HOME/.bashlocal
|
touch $HOME/.bashlocal
|
||||||
read -p "lol maybe it worked"
|
read -p "lol maybe it worked"
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
Loading…
Reference in New Issue
Block a user