From 2bc192643e4db76726f894312b11dbe734554103 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20W=C3=BChr?= Date: Mon, 19 Feb 2024 09:17:32 +0100 Subject: [PATCH] Some more changes --- dotconf/bashrc | 30 +++++++++--------------------- install.conf.yaml | 3 +++ 2 files changed, 12 insertions(+), 21 deletions(-) diff --git a/dotconf/bashrc b/dotconf/bashrc index 8577746..7cb3997 100644 --- a/dotconf/bashrc +++ b/dotconf/bashrc @@ -34,27 +34,15 @@ source "$OSH"/oh-my-bash.sh export LANG=de_DE.UTF-8 -# Preferred editor for local and remote sessions -# if [[ -n $SSH_CONNECTION ]]; then -# export EDITOR='vim' -# else -# export EDITOR='mvim' -# fi +eval `ssh-agent` -# Compilation flags -# export ARCHFLAGS="-arch x86_64" - -# ssh -# export SSH_KEY_PATH="~/.ssh/rsa_id" - -# Set personal aliases, overriding those provided by oh-my-bash libs, -# plugins, and themes. Aliases can be placed here, though oh-my-bash -# users are encouraged to define aliases within the OSH_CUSTOM folder. -# For a full list of active aliases, run `alias`. -# -# Example aliases -# alias bashconfig="mate ~/.bashrc" -# alias ohmybash="mate ~/.oh-my-bash" +alias c="composer" +alias dc="docker compose" [ ! -z "$(which starship)" ] && eval "$(starship init bash)" -[ ! -z "$(which direnv)" ] && eval "$(direnv hook bash)" \ No newline at end of file +[ ! -z "$(which direnv)" ] && eval "$(direnv hook bash)" + +for f in ~/.bashrc.d/* +do + source "$f" +done diff --git a/install.conf.yaml b/install.conf.yaml index 4cc6d65..231788f 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -4,6 +4,9 @@ - clean: ["~"] +- create: + - ~/.bashrc.d + - shell: - git submodule update --init --recursive