Added alacitty, github-cli, updated zsh, vscode, README, deleted not used configs

This commit is contained in:
neoteny 2021-11-28 22:27:23 +02:00
parent 08e75ea6e9
commit 02491dec2c
24 changed files with 145 additions and 640 deletions

21
zshrc
View file

@ -1,6 +1,3 @@
## StartShip
# eval "$(starship init zsh)"
## Variables
export GOPATH="$HOME/go"
export PATH="$HOME/bin:$HOME/.local/bin:$HOME/.golang/bin:$GOPATH/bin:$HOME/.yarn/bin:$HOME/.luarocks/bin:$HOME/.cargo/bin:$PATH"
@ -12,23 +9,15 @@ ZSH_THEME="simple"
DISABLE_AUTO_TITLE="true"
source "$HOME/.oh-my-zsh/oh-my-zsh.sh"
## FNM
## Tools
eval $(fnm env)
## Zoxide
eval "$(zoxide init zsh)"
## Functions
dotnet() {
$HOME/dotnet/dotnet "$@"
}
eval $(zoxide init zsh)
## Aliases
alias cls="clear" cp="cp -r" mkdir="mkdir -p" open="open_command" lg="lazygit"
alias v="nvim" vim="v" m="make"
alias cls="clear" cp="cp -r" mkdir="mkdir -p"
alias gor="go run" gob="go build" gog="go get" goi="go install" got="go test" gov="go vet"
alias ...="cd ../.." .3="cd ../../.."
alias gor="go run" gob="go build" gog="go get" goi="go install" got="go test"
alias n="npm" asdfi=". /opt/asdf-vm/asdf.sh"
alias v="nvim" vim="v" asdfi=". /opt/asdf-vm/asdf.sh"
if [[ -f "/bin/exa" ]]; then
alias ls="exa -l" ll="ls" la="ls -a"