mirror of
https://github.com/jakejarvis/dotfiles.git
synced 2026-01-12 16:32:54 -05:00
re-add prettified ls colors
This commit is contained in:
19
zsh/.zshrc
19
zsh/.zshrc
@@ -1,19 +1,19 @@
|
|||||||
# Path to your dotfiles (aka the cloned Git repo).
|
# Path to cloned dotfiles repo
|
||||||
export DOTFILES=$HOME/.dotfiles/zsh
|
export DOTFILES=$HOME/.dotfiles/zsh
|
||||||
|
|
||||||
# Path to your oh-my-zsh installation.
|
# Path to oh-my-zsh installation
|
||||||
export ZSH=$HOME/.oh-my-zsh
|
export ZSH=$HOME/.oh-my-zsh
|
||||||
|
|
||||||
# Default to nano 'cause I'm a wimp.
|
# Default to nano 'cause I'm a wimp
|
||||||
export VISUAL="nano"
|
export VISUAL="nano"
|
||||||
export EDITOR="nano"
|
export EDITOR="nano"
|
||||||
|
|
||||||
# Adjust history for speed.
|
# Adjust history for speed
|
||||||
HISTFILE=~/.zsh_history
|
HISTFILE=~/.zsh_history
|
||||||
HISTSIZE=10000
|
HISTSIZE=10000
|
||||||
SAVEHIST=10000
|
SAVEHIST=10000
|
||||||
|
|
||||||
# Oh My ZSH settings:
|
# Oh My ZSH settings
|
||||||
ZSH_CUSTOM=$DOTFILES
|
ZSH_CUSTOM=$DOTFILES
|
||||||
ZSH_THEME="agnoster"
|
ZSH_THEME="agnoster"
|
||||||
plugins=(
|
plugins=(
|
||||||
@@ -26,11 +26,16 @@ plugins=(
|
|||||||
# Load everything!
|
# Load everything!
|
||||||
source $ZSH/oh-my-zsh.sh
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
|
||||||
# Fix slow paste problem w/ zsh-syntax-highlighting plugin.
|
# Fix slow paste problem w/ zsh-syntax-highlighting plugin
|
||||||
# https://github.com/zsh-users/zsh-syntax-highlighting/issues/295
|
# https://github.com/zsh-users/zsh-syntax-highlighting/issues/295
|
||||||
zstyle ':bracketed-paste-magic' active-widgets '.self-*'
|
zstyle ':bracketed-paste-magic' active-widgets '.self-*'
|
||||||
|
|
||||||
# Other miscellaneous settings:
|
# 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_ANALYTICS=1
|
||||||
export HOMEBREW_NO_INSECURE_REDIRECT=1
|
export HOMEBREW_NO_INSECURE_REDIRECT=1
|
||||||
export HOMEBREW_CASK_OPTS=--require-sha
|
export HOMEBREW_CASK_OPTS=--require-sha
|
||||||
|
|||||||
Reference in New Issue
Block a user