1
mirror of https://github.com/jakejarvis/dotfiles.git synced 2026-01-12 16:32:54 -05:00

nvm causing way too many headaches -- I'll figure it out later

This commit is contained in:
2019-09-25 10:22:48 -04:00
parent 1d358cda17
commit b3a3f41b6e
6 changed files with 17 additions and 19 deletions

View File

@@ -1,5 +1,5 @@
# Path to cloned dotfiles repo
export DOTFILES=$HOME/.dotfiles/zsh
export DOTFILES=$HOME/.dotfiles
# Path to oh-my-zsh installation
export ZSH=$HOME/.oh-my-zsh
@@ -14,7 +14,7 @@ HISTSIZE=10000
SAVEHIST=10000
# Oh My ZSH settings
ZSH_CUSTOM=$DOTFILES
ZSH_CUSTOM=$DOTFILES/zsh
ZSH_THEME="agnoster"
plugins=(
colorize
@@ -23,6 +23,14 @@ plugins=(
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