13 lines
312 B
Bash
13 lines
312 B
Bash
# ZSH configuration that works with Nix
|
|
# This file should be sourced from your shell config
|
|
|
|
# Aliases
|
|
alias g="git"
|
|
alias docker="docker"
|
|
alias h="htop"
|
|
|
|
# Path setup for Nix packages
|
|
export PATH="/nix/var/nix/profiles/default/bin:$PATH"
|
|
|
|
# Enable syntax highlighting
|
|
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets) |