summaryrefslogtreecommitdiff
path: root/.zshrc
diff options
context:
space:
mode:
authorGravatar Matthew Wozniak <me@woz.blue> 2026-07-08 15:40:02 -0400
committerGravatar Matthew Wozniak <me@woz.blue> 2026-07-08 15:40:02 -0400
commitd19d762a34135b62e46145bdc90c5fab109d065d (patch)
tree9447978671d675710dede4c9da495e58631492d9 /.zshrc
downloaddots-master.tar.gz
dots-master.zip
initial commitHEADmaster
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc30
1 files changed, 30 insertions, 0 deletions
diff --git a/.zshrc b/.zshrc
new file mode 100644
index 0000000..b46cde3
--- /dev/null
+++ b/.zshrc
@@ -0,0 +1,30 @@
+export ZSH="$HOME/.oh-my-zsh"
+ZSH_THEME="simple"
+
+zstyle ':omz:update' mode reminder # just remind me to update when it's time
+
+# 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"
+
+# Standard plugins can be found in $ZSH/plugins/
+# Custom plugins may be added to $ZSH_CUSTOM/plugins/
+# Example format: plugins=(rails git textmate ruby lighthouse)
+# Add wisely, as too many plugins slow down shell startup.
+plugins=(git)
+
+source $ZSH/oh-my-zsh.sh
+
+# You may need to manually set your language environment
+export LANG=en_US.UTF-8
+
+export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$HOME/.zvm/bin:$PATH
+export XDG_CONFIG_HOME=$HOME/etc
+export XDG_DATA_HOME=$HOME/usr
+export XDG_CACHE_HOME=$HOME/var
+export XDG_STATE_HOME=$HOME/usr/state
+export WLR_RENDERER=vulkan
+export VISUAL=nvim
+export EDITOR=nvim
+export MAKEFLAGS="-j12"