You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.2 KiB
Bash

# If you come from bash you might have to change your $PATH. Test
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="/home/smores/.oh-my-zsh"
ZSH_THEME="essembeh"
plugins=(
git
autojump
zsh-autosuggestions
k
)
source $ZSH/oh-my-zsh.sh
[[ -s /home/smores/.autojump/etc/profile.d/autojump.sh ]] && source /home/smores/.autojump/etc/profile.d/autojump.sh
autoload -U compinit && compinit -u
alias neofetch="neofetch --source ~/.config/neofetch/fire.txt"
alias open="xdg-open . 2>/dev/null"
alias lf=lfub
alias vim="nvim"
alias wm="python3 webManager.py"
export GOPATH=$HOME/go
export GOROOT=/usr/lib/go
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
export VAGRANT_DEFAULT_PROVIDER=virtualbox
function DL(){
variable1=$(echo ~/Downloads/$(ls -ltr ~/Downloads | tail -n1 | awk {"print \$9"}));
echo $variable1;
}
# Exports
export nvimconf='~/.config/nvim/init.vim'
# Alias
alias es='nvim src/main.rs'
alias ec='nvim Cargo.toml'
alias bat='bat --theme=gruvbox-dark'
alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
alias dotfiles='/usr/bin/git --git-dir=/home/smores/.dotfiles/ --work-tree=/home/smores'