summaryrefslogtreecommitdiff
path: root/bash/.bashrc
blob: a8153acf5c62912f7b6983ad7a51df8d9d93cf0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# If not running interactively, don't do anything
[[ $- != *i* ]] && return

# Prompt
if [[ -n $SSH_CLIENT  ]]; then
    PS1=$'\e[0;31m[\h]\e[0m \w $ '
else
    PS1='\w $ '
fi

# FZF
[ -f ~/.fzf.bash ] && source ~/.fzf.bash

source ~/.zgen/urbainvaes/fzf-marks-master/fzf-marks.plugin.bash