From d12184c99b528cddf0676608d290e50932d1656c Mon Sep 17 00:00:00 2001 From: stuebinm Date: Sun, 11 Feb 2024 00:17:07 +0100 Subject: guixify surltesh-echer initial config, the system is now a mess with lots of old nix stuff still hanging out on the disk. Tbh not sure if I'll do much with this, but wanted to play around a little with this again. --- surltesh-echer/home/bashrc | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 surltesh-echer/home/bashrc (limited to 'surltesh-echer/home/bashrc') diff --git a/surltesh-echer/home/bashrc b/surltesh-echer/home/bashrc new file mode 100644 index 0000000..9c2ee2d --- /dev/null +++ b/surltesh-echer/home/bashrc @@ -0,0 +1,36 @@ + + +# Commands that should be applied only for interactive shells. +[[ $- == *i* ]] || return + +HISTCONTROL=ignoredups:ignorespace +HISTFILESIZE=10000 +HISTSIZE=10000 + +shopt -s histappend +shopt -s checkwinsize +shopt -s extglob +shopt -s globstar +shopt -s checkjobs + +alias ll='ls -slF' +alias lrz-vpn='sudo openconnect https://asa-cluster.lrz.de -g AnyConnect' +alias news='newsboat' +alias pj='pijul' + +if [[ ! -v BASH_COMPLETION_VERSINFO ]]; then + . "/nix/store/9xgx98k6ggq1ay63cq57k9gw35i44b1n-bash-completion-2.11/etc/profile.d/bash_completion.sh" +fi + +export GPG_TTY=`tty` +# this shouldn't be necessary, but apparently nix is broken ... +NIX_PATH=$HOME/.nix-defexpr/channels${NIX_PATH:+:}$NIX_PATH +PS1='\[\033[1;36m\] >>> [\j|\u@\w]\$: \[\033[00m\]' + +GPG_TTY="$(tty)" +export GPG_TTY + +if [[ $TERM != "dumb" && (-z $INSIDE_EMACS || $INSIDE_EMACS == "vterm") ]]; then + eval "$(/home/stuebinm/.nix-profile/bin/starship init bash --print-full-init)" +fi + -- cgit v1.2.3