* starship - simplified report format line and placed on the left top before prompt

* # character prompt by default
* tmux styled and smart tab naming
+ vim toml plugin
This commit is contained in:
2023-04-17 19:02:36 +03:00
parent 9a265fe3f7
commit b3a2e4ed6a
4 changed files with 102 additions and 30 deletions

View File

@ -73,3 +73,12 @@ function right_prompt(){
starship_precmd_user_func="right_prompt"
eval "$(starship init bash)"
# Prepare LC_ALL for correct fonts rendering in tmux
export LC_ALL=en_US.UTF-8
export LANG=ru_RU.UTF-8
# auto into tmux session
if [[ -n "$PS1" ]] && [[ -z "$TMUX" ]] && [[ -n "$SSH_CONNECTION" ]]; then
sudo tmux attach || sudo tmux
fi