From b8d625f85e3645545553e1582c2159f8bb470187 Mon Sep 17 00:00:00 2001 From: Andreas Tsouchlos Date: Fri, 3 May 2024 18:22:48 +0200 Subject: [PATCH] Remove .bashrc --- .bashrc | 96 --------------------------------------------------------- 1 file changed, 96 deletions(-) delete mode 100644 .bashrc diff --git a/.bashrc b/.bashrc deleted file mode 100644 index 3bcaed5..0000000 --- a/.bashrc +++ /dev/null @@ -1,96 +0,0 @@ -# -# ~/.bashrc -# - -# If not running interactively, don't do anything -[[ $- != *i* ]] && return - -alias ls='ls --color=auto' -alias grep='grep --color=auto' -PS1='[\u@\h \W]\$ ' -alias ll='ls -alF' -alias cls="printf '\033[2J\033[3J\033[1;1H'" - -export PATH=$PATH:/home/andreas/ext_sw/flutter/bin -export PATH=$PATH:/home/andreas/.local/bin - -alias get-idf='. $HOME/git/esp-idf/export.sh' -alias clang-idf='export IDF_TOOLCHAIN=clang && . $HOME/git/esp-idf/export.sh' - -alias ic='cd ~/.config/i3' -alias nc='cd ~/.config/nvim' -alias ebc='nvim ~/.bashrc' - -alias ait='cd ~/Documents/kit/AIT' -alias kit='cd ~/Documents/kit' -alias eml='cd ~/Documents/kit/EMLLAB/emllab-challenge && . venv/bin/activate' -alias let='cd ~/git/ba-letter' - -alias hyp='cd ~/git/HyperLink_SW' - -source /usr/share/git/completion/git-completion.bash - -eval "$(thefuck --alias)" - -export VISUAL=nvim -export EDITOR="$VISUAL" - -function pym { - python -m $@ -} - -function _pym_complete { - - local executable current previous options - executable=${COMP_WORDS[0]} - current="${COMP_WORDS[COMP_CWORD]}" - previous="${COMP_WORDS[COMP_CWORD-1]}" - - COMPREPLY=() - if [[ ( "$executable" == python* && "$previous" == "-m" ) || - ( "$executable" == pym && ! "$current" == -* ) ]]; then - - options="`python <