dotfiles

Files to recover my file system.
git clone git://git.b1t.dev/dotfiles.git
Log | Files | Refs | README

.zshrc (497B)


      1 # Path to your oh-my-zsh installation.
      2 export ZSH="$HOME/.oh-my-zsh"
      3 
      4 # Set name of the theme to load --- if set to "random" to get random themes.
      5 ZSH_THEME="pointer"
      6 
      7 # Which plugins would you like to load?
      8 plugins=(
      9 	git
     10 	zsh-syntax-highlighting 
     11 	zsh-autosuggestions
     12 )
     13 
     14 source $ZSH/oh-my-zsh.sh
     15 
     16 
     17 # Language environment
     18 export LANG=en_US.UTF-8
     19 
     20 
     21 # Aliases
     22 alias ls="ls -la --color=auto"
     23 alias tmuxreload="tmux source-file ~/.tmux.conf"
     24 alias zshreload="source ~/.zshrc"
     25 alias python="python3"
     26