Last active
December 13, 2015 11:03
-
-
Save theclanks/224c9b7acfcbd19961c7 to your computer and use it in GitHub Desktop.
FreeBSD Cshrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# $FreeBSD: release/10.0.0/share/skel/dot.cshrc 243893 2012-12-05 13:56:39Z eadler $ | |
# | |
# .cshrc - csh resource script, read at beginning of execution by each shell | |
# | |
# see also csh(1), environ(7). | |
# more examples available at /usr/share/examples/csh/ | |
# | |
alias h history 25 | |
alias j jobs -l | |
alias la ls -aF | |
alias lf ls -FA | |
alias ll ls -lAF | |
alias ls ls -G | |
alias sshfs sshfs -ocache=no,entry_timeout=0,attr_timeout=0,intr | |
# A righteous umask | |
umask 22 | |
set path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin $HOME/bin) | |
setenv EDITOR vim | |
setenv VISUAl vim | |
setenv PAGER less | |
# setenv LESS "-MQ" | |
setenv BLOCKSIZE K | |
setenv GREP_COLOR '1;37;44' | |
setenv LSCOLORS "exfxcxdxbxegedabagacad" | |
alias portmaster-auto portmaster --no-confirm -y -f -G -D -R | |
setenv CLICOLOR yes | |
setenv LESS -erX | |
setenv LANG pt_BR.UTF-8 | |
setenv MM_CHARSET UTF-8 | |
if ($?prompt) then | |
# An interactive shell -- set some stuff up | |
set prompt = "%N@%m:%~ %# " | |
set promptchars = "%#" | |
set filec | |
set history = 1000 | |
set savehist = (1000 merge) | |
set autolist = ambiguous | |
# Use history to aid expansion | |
set autoexpand | |
set autorehash | |
set mail = (/var/mail/$USER) | |
if ( $?tcsh ) then | |
bindkey "^W" backward-delete-word | |
bindkey -k up history-search-backward | |
bindkey -k down history-search-forward | |
endif | |
endif | |
## icedtea-web | |
setenv XDG_CONFIG_DIR ~/.config/ | |
setenv XDG_CACHE_DIR ~/.cache/ | |
setenv XDG_RUNTIME_DIR /tmp | |
setenv XDG_CONFIG_HOME ~/.config/ | |
setenv XDG_CACHE_HOME ~/.cache/ | |
setenv KDE_FORK_SLAVES 1 | |
#setenv TERM screen-256color | |
setenv TERM xterm-256color |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment