mirror of
https://github.com/jakejarvis/dotfiles.git
synced 2025-04-26 03:45:21 -04:00
50 lines
1.1 KiB
Bash
50 lines
1.1 KiB
Bash
# Path to cloned dotfiles repo
|
|
export DOTFILES=$HOME/.dotfiles
|
|
|
|
# Path to oh-my-zsh installation
|
|
export ZSH=$HOME/.oh-my-zsh
|
|
|
|
# Default to nano 'cause I'm a wimp
|
|
export VISUAL="nano"
|
|
export EDITOR="nano"
|
|
|
|
# Adjust history for speed
|
|
HISTFILE=~/.zsh_history
|
|
HISTSIZE=10000
|
|
SAVEHIST=10000
|
|
|
|
# Oh My ZSH settings
|
|
ZSH_CUSTOM=$DOTFILES/zsh
|
|
ZSH_THEME="agnoster"
|
|
plugins=(
|
|
colorize
|
|
osx
|
|
zsh-syntax-highlighting
|
|
zsh-autosuggestions
|
|
)
|
|
|
|
# https://gist.github.com/ctechols/ca1035271ad134841284
|
|
#autoload -Uz compinit
|
|
#if [ $(date +'%j') != $(stat -f '%Sm' -t '%j' ~/.zcompdump) ]; then
|
|
# compinit
|
|
#else
|
|
# compinit -C
|
|
#fi
|
|
|
|
# Load everything!
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
# Fix slow paste problem w/ zsh-syntax-highlighting plugin
|
|
# https://github.com/zsh-users/zsh-syntax-highlighting/issues/295
|
|
zstyle ':bracketed-paste-magic' active-widgets '.self-*'
|
|
|
|
# Prettify `ls`
|
|
# `man ls` to decode this mess
|
|
export CLICOLOR=1
|
|
export LSCOLORS=ExFxBxDxCxegedabagacad
|
|
|
|
# Other miscellaneous settings
|
|
export HOMEBREW_NO_ANALYTICS=1
|
|
export HOMEBREW_NO_INSECURE_REDIRECT=1
|
|
export HOMEBREW_CASK_OPTS=--require-sha
|