同步一些常用配置

tianyun 6df595ca02 1 hai 9 meses
.gitignore 792c1bf0fc 新增.gitignore和sh_config.sh文件。 hai 1 ano
README.md c49357f376 1 hai 9 meses
sh_config.sh c49357f376 1 hai 9 meses
ssh_config.sh 6df595ca02 1 hai 9 meses
tmp.sh 8ab0770ec1 123 hai 1 ano

README.md

sync

同步一些常用配置

bashrc 配置

for file in ~/sync/*_config.sh; do
    if [ -f "$file" ]; then
        source "$file"
    fi
done

alias sync_config_file='cd ~/sync && git pull && git add . && git commit -m 123 && git push'
alias vim-config-file='idea ~/sync'