diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2026-03-16 08:58:15 -0700 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2026-03-16 08:58:15 -0700 |
| commit | 515b1d087462531cac0e8d9c47465553a2c46fb9 (patch) | |
| tree | 8fc1e0377aadd25b2c1726e8eb4558710a06e831 /config/tcshrc | |
| parent | 661316165afe4b7600331e2c8ea54f4fb8f2bb47 (diff) | |
tcsh and bash conf
Diffstat (limited to 'config/tcshrc')
| -rw-r--r-- | config/tcshrc | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/config/tcshrc b/config/tcshrc index 102ba72..da13974 100644 --- a/config/tcshrc +++ b/config/tcshrc @@ -1,6 +1,8 @@ set path = (~/.ghcup/bin ~/.cabal/bin ~/.cargo/bin ~/.mcabal/bin ~/.local/musl/bin ~/.local/bin /usr/local/bin /usr/bin /bin) set prompt = "%n@%m:%~> " +set complete = recexact +set autolist = ambiguous if ( ${?PKG_CONFIG_PATH} ) then setenv PKG_CONFIG_PATH `echo /usr/local/lib/pkgconfig:${PKG_CONFIG_PATH}` @@ -14,7 +16,7 @@ setenv VISUAL "emacsclient -c" setenv MORE "FRX" setenv LESS "FRX" setenv PAGER `which less || which more || echo "cat"` -setenv EXINIT "set ai ic sm sw=4 ts=4" +setenv EXINIT "set ai ic sw=4 ts=4 nofl magic" alias cb "xclip -selection clipboard" alias bctl "bluetoothctl" @@ -43,6 +45,14 @@ alias ll "ls -la" alias ls "ls --color=auto" alias grep 'grep --color=auto' +if (`filetest -e /usr/share/git/completion/git-completion.tcsh`) then + source ${HOME}/.git-completion.tcsh +endif + +#if (`filetest -e ${HOME}/.tcsh-completion.tcsh`) then + #source ${HOME}/.tcsh-completion.tcsh +#endif + if (`filetest -e /etc/complete.tcsh`) then source /etc/complete.tcsh endif |
