Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Acessar
10sr
/
dotfiles-mirror
espelhamento de
https://github.com/10sr/dotfiles.git
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Versões
0
Wiki
Atividade
Ver código fonte
remove CR when in windows and less file
pull/1/head
10sr
13 anos atrás
pai
827cb89e4c
commit
1856e115d7
1 arquivos alterados
com
6 adições
e
1 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+6
-1
.bashrc
+ 6
- 1
.bashrc
Ver arquivo
@@ -42,7 +42,12 @@ test -r /etc/bashrc && . /etc/bashrc
export PS1="\$(prompt_function)\$ "
# PROMPT_COMMAND=prompt_function
export PAGER="less"
if iswindows
then
export PAGER="tr -d \\r | less"
else
export PAGER="less"
fi
export EDITOR="vi"
export VISUAL="$EDITOR"
export LESS="-iRMX"
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar