Compare commits
2 Commits
4af88f7422
...
2822d6efed
Author | SHA1 | Date | |
---|---|---|---|
2822d6efed | |||
3223227eee |
26
chezmoi/dot_config/bat/config
Normal file
26
chezmoi/dot_config/bat/config
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# This is `bat`s configuration file. Each line either contains a comment or
|
||||||
|
# a command-line option that you want to pass to `bat` by default. You can
|
||||||
|
# run `bat --help` to get a list of all possible configuration options.
|
||||||
|
|
||||||
|
# Specify desired highlighting theme (e.g. "TwoDark"). Run `bat --list-themes`
|
||||||
|
# for a list of all available themes
|
||||||
|
#--theme="TwoDark"
|
||||||
|
--theme="Dracula"
|
||||||
|
|
||||||
|
# Enable this to use italic text on the terminal. This is not supported on all
|
||||||
|
# terminal emulators (like tmux, by default):
|
||||||
|
#--italic-text=always
|
||||||
|
|
||||||
|
# Uncomment the following line to disable automatic paging:
|
||||||
|
#--paging=never
|
||||||
|
|
||||||
|
# Uncomment the following line if you are using less version >= 551 and want to
|
||||||
|
# enable mouse scrolling support in `bat` when running inside tmux. This might
|
||||||
|
# disable text selection, unless you press shift.
|
||||||
|
#--pager="less --RAW-CONTROL-CHARS --quit-if-one-screen --mouse"
|
||||||
|
|
||||||
|
# Syntax mappings: map a certain filename pattern to a language.
|
||||||
|
# Example 1: use the C++ syntax for Arduino .ino files
|
||||||
|
# Example 2: Use ".gitignore"-style highlighting for ".ignore" files
|
||||||
|
#--map-syntax "*.ino:C++"
|
||||||
|
#--map-syntax ".ignore:Git Ignore"
|
@ -1,32 +1,34 @@
|
|||||||
# Path to your oh-my-zsh configuration.
|
# Path to your oh-my-zsh configuration.
|
||||||
export ZSH=$HOME/.oh-my-zsh
|
export ZSH=$HOME/.oh-my-zsh
|
||||||
|
|
||||||
plugins=(asdf direnv aws gcloud extract command-not-found tmux git github ssh-agent docker docker-compose mix zsh-autosuggestions)
|
plugins=(
|
||||||
|
asdf
|
||||||
|
aws
|
||||||
|
command-not-found
|
||||||
|
direnv
|
||||||
|
docker
|
||||||
|
docker-compose
|
||||||
|
eza
|
||||||
|
extract
|
||||||
|
gcloud
|
||||||
|
git
|
||||||
|
github
|
||||||
|
mix
|
||||||
|
tmux
|
||||||
|
zsh-autosuggestions
|
||||||
|
)
|
||||||
|
|
||||||
|
# eza plugin config
|
||||||
|
zstyle ':omz:plugins:eza' 'git-status' yes
|
||||||
|
zstyle ':omz:plugins:eza' 'header' yes
|
||||||
|
|
||||||
# OH MY ZSH!
|
# OH MY ZSH!
|
||||||
source $ZSH/oh-my-zsh.sh
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
|
||||||
# Android Studio
|
# Load starship
|
||||||
if [ -d ~/Library/Android/sdk ]; then
|
|
||||||
export ANDROID_SDK=~/Library/Android/sdk
|
|
||||||
export PATH=~/Library/Android/sdk/platform-tools:$PATH
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ $TERM = "screen" ]; then
|
|
||||||
export DISABLE_AUTO_TITLE="true"
|
|
||||||
fi
|
|
||||||
|
|
||||||
eval "$(starship init zsh)"
|
eval "$(starship init zsh)"
|
||||||
|
|
||||||
# Aliases
|
# Aliases
|
||||||
if command -v bat &> /dev/null; then
|
if command -v bat &> /dev/null; then
|
||||||
alias -- cat=bat
|
alias -- cat=bat
|
||||||
fi
|
fi
|
||||||
if command -v eza &> /dev/null; then
|
|
||||||
alias -- eza='eza --git --header'
|
|
||||||
alias -- la='eza -a'
|
|
||||||
alias -- ll='eza -l'
|
|
||||||
alias -- lla='eza -la'
|
|
||||||
alias -- ls=eza
|
|
||||||
alias -- lt='eza --tree'
|
|
||||||
fi
|
|
Loading…
x
Reference in New Issue
Block a user