a little ricing

This commit is contained in:
foosinn 2022-02-12 20:52:20 +01:00
parent 448da283ee
commit beb7d2def1
8 changed files with 166 additions and 82 deletions

View file

@ -45,6 +45,12 @@ in {
etc = {
"starship.toml".source = ../dotfiles/starship.toml;
};
variables = {
BAT_THEME = "ansi";
EDITOR = "nvim";
STARSHIP_CONFIG = "/etc/starship.toml";
};
};
programs.bash = {
@ -52,8 +58,6 @@ in {
. <(starship init bash)
'';
interactiveShellInit = ''
export EDITOR=nvim
export STARSHIP_CONFIG=/etc/starship.toml
if [ -f ~/.ssh/agent.env ] ; then
. ~/.ssh/agent.env > /dev/null
@ -68,7 +72,6 @@ in {
ssh-add
fi
set_win_title() {
echo -ne "\033]0;$USER@$HOSTNAME: $PWD\007"
}