From 51b88646e3c684d4a8273a67c2b4e4e5fc3a165e Mon Sep 17 00:00:00 2001 From: Siina Mashek Date: Sun, 21 Mar 2021 19:36:19 +0200 Subject: [PATCH] Remove powerline items, make 'human readable' in ls alias --- bashrc | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/bashrc b/bashrc index a023f76..a19d5a8 100644 --- a/bashrc +++ b/bashrc @@ -3,12 +3,6 @@ if [[ $- != *i* ]] ; then return fi -# Setting up the city's powerlines -powerline-daemon -q -POWERLINE_BASH_CONTINUATION=1 -POWERLINE_BASH_SELECT=1 -. /usr/lib/python3.8/site-packages/powerline/bindings/bash/powerline.sh - # The city's finest exports! export GIT_EDITOR="vim" export PATH="$PATH:$HOME/.local/bin" @@ -16,5 +10,5 @@ export PS1="\[$(tput setaf 2)\]\u@\h\[$(tput setaf 4)\] \w\[$(tput sgr0)\] \\$ " export TERM=xterm-color # Fixes ssh since I use alacritty and it sets the TERM to its name export VIMINIT="source $HOME/.config/vim/vimrc" -alias ls="ls --color=auto" +alias ls="ls -h --color=auto" alias weather='curl wttr.in/?format="%l:+%C,+%t+(feels+like+%f)+Wind:+%w&M"\n'