view rc/zshrc @ 746:6b7f6f09b8d1 default tip

[vimrc] fix php syntax highlight Example file: https://github.com/ppy/osu-web/blob/e23658f45ac2e85d78bd339947e0d1cee57629c6/app/Libraries/BBCodeFromDB.php (around the end)
author nanaya <me@nanaya.net>
date Wed, 29 Oct 2025 12:28:45 +0900
parents 77c1f9e624a3
children
line wrap: on
line source

#!/usr/bin/env zsh
[ -f "${HOME}/.ec.zsh.before" ] && . "${HOME}/.ec.zsh.before"
case $TERM in
  xterm*|screen*)
    precmd () {print -Pn "\e]0;%n@%m: %~\a"}
  ;;
esac
PS1='[%n@%m %~]%% '
export PATH="${HOME}/.ec.bin:${PATH}"
HISTFILE=~/.histfile
HISTSIZE=10000
SAVEHIST=10000
setopt appendhistory nomatch
unsetopt autocd beep extendedglob notify
bindkey -e
bindkey '^[[A' history-search-backward
bindkey '^[[B' history-search-forward

autoload -Uz compinit
compinit

export EDITOR=vi
export PAGER='less -Rins'
alias less='less -Rins'
alias ls='ls -F'
[ -f "${HOME}/.ec.zsh.after" ] && . "${HOME}/.ec.zsh.after"