diff options
author | Martin Fischer <martin@push-f.com> | 2024-12-02 20:25:06 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2024-12-11 08:37:52 +0100 |
commit | 9d1363f2fa33bf590148ece64457272502a310dc (patch) | |
tree | 701d39bc812904731f2594905ea585b78ffd4f35 /user/zsh | |
parent | f5af22a8d108c9008b1a2b6c99e65ff910518288 (diff) |
add developer tools
Diffstat (limited to 'user/zsh')
-rw-r--r-- | user/zsh/.zshrc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/user/zsh/.zshrc b/user/zsh/.zshrc index 72e6425..2e9d521 100644 --- a/user/zsh/.zshrc +++ b/user/zsh/.zshrc @@ -22,7 +22,9 @@ function ls() { } ## Aliases +alias code='codium' alias ls='ls --color=auto --group-directories-first' # see also ls function +alias tokei='tokei -s code -n commas' alias tree='tree -aI .git --dirsfirst' ## Shell variables @@ -49,6 +51,12 @@ export XDG_CACHE_HOME=$HOME/.cache export XDG_CONFIG_HOME=$HOME/.config export EDITOR=vim +export INPUTRC=$XDG_CONFIG_HOME/readline/inputrc +export NPM_CONFIG_PREFIX="$HOME/.local/npm" +export PYTHON_BASIC_REPL=1 # use readline (Python >=3.13 defaults to its own REPL which has no vi keybindings) + +export PATH="$PATH:$HOME/.cargo/bin" +export PATH="$PATH:$NPM_CONFIG_PREFIX/bin" ## Completion autoload -Uz compinit |