You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
730 B
37 lines
730 B
# export PATH=$HOME/bin:/usr/local/bin:$PATH
|
|
|
|
export ZSH="$HOME/.oh-my-zsh"
|
|
ZSH_THEME="agnoster"
|
|
plugins=(git zsh-syntax-highlighting)
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
set -o vi
|
|
alias gac='git add . && git commit'
|
|
alias v='nvim'
|
|
alias s='ls'
|
|
alias c='clear'
|
|
alias e='exit'
|
|
alias o='xdg-open'
|
|
alias cp='cp -r'
|
|
alias vc='nvim ~/.config/nvim'
|
|
alias vrc='vim ~/.vimrc'
|
|
alias vz='nvim ~/.zshrc'
|
|
alias sz='source ~/.zshrc'
|
|
alias sy='systemctl'
|
|
# ~/.zshrc
|
|
|
|
export MT_EDITOR=nvim
|
|
export VISUAL=nvim
|
|
|
|
export WORKSPACES=$HOME/Documents
|
|
f() {
|
|
fff "$@"
|
|
cd "$(cat "${XDG_CACHE_HOME:=${HOME}/.cache}/fff/.fff_d")"
|
|
}
|
|
|
|
bindkey -s "^f" "~/.local/bin/tmuxs\n"
|
|
|
|
export EDITOR=nvim
|
|
export PATH=$HOME/.local/bin:$PATH
|
|
export PATH=$HOME/go/bin:$PATH
|