Last active
February 25, 2021 20:47
-
-
Save morenitux/edc04323634f0f166a978d068ba6b0f1 to your computer and use it in GitHub Desktop.
Personal zshrc settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/home/luismorenomx/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes | |
ZSH_THEME="bira" | |
DISABLE_UPDATE_PROMPT="true" | |
# Uncomment the following line to change how often to auto-update (in days). | |
export UPDATE_ZSH_DAYS=7 | |
# Add wisely, as too many plugins slow down shell startup. | |
plugins=(git) | |
source $ZSH/oh-my-zsh.sh | |
# Custom alias | |
alias gs="cd /var/www/html/intranet/" | |
alias ws="cd /mnt/Personal/Workspace/" | |
#Global settings to avoid freeze vim | |
#https://unix.stackexchange.com/a/72092 | |
stty -ixon |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment