mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
Modularize zsh dotfiles, add colemak bindkey
This commit is contained in:
parent
4e6519772d
commit
dc7611825a
16 changed files with 206 additions and 526 deletions
24
zsh/config.zsh
Normal file
24
zsh/config.zsh
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
### ZSH Config ###
|
||||
export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$PATH
|
||||
export ZSH="$HOME/.oh-my-zsh"
|
||||
ZSH_THEME="avit"
|
||||
# DISABLE_MAGIC_FUNCTIONS="true"
|
||||
# DISABLE_LS_COLORS="true"
|
||||
# DISABLE_AUTO_TITLE="true"
|
||||
# ENABLE_CORRECTION="true"
|
||||
# Uncomment the following line to display red dots whilst waiting for completion.
|
||||
# You can also set it to another string to have that shown instead of the default red dots.
|
||||
# e.g. COMPLETION_WAITING_DOTS="%F{yellow}waiting...%f"
|
||||
# Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765)
|
||||
# COMPLETION_WAITING_DOTS="true"
|
||||
# Uncomment the following line if you want to disable marking untracked files
|
||||
# under VCS as dirty. This makes repository status check for large repositories
|
||||
# much, much faster.
|
||||
# DISABLE_UNTRACKED_FILES_DIRTY="true"
|
||||
HIST_STAMPS="yyyy-mm-dd"
|
||||
plugins=(git web-search jsontools z vi-mode zsh-syntax-highlighting zsh-autosuggestions)
|
||||
source $ZSH/oh-my-zsh.sh
|
||||
source .private.env.sh
|
||||
|
||||
# export MANPATH="/usr/local/man:$MANPATH"
|
||||
# export LANG= "en_US.UTF-8"
|
||||
Loading…
Add table
Add a link
Reference in a new issue