I'd like to remove the space between the edition and the year but I don't know how.
To explain: I put the edition before the year by changing the bibmacro publisher+location+date and removing \printfield{edition} from the bibliography driver. I did the same for in collection but I didn't put it up here. I don't know if that's the best solution but it works
\documentclass[11pt]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[autostyle,german=guillemets]{csquotes}
\usepackage[backend=biber, style=authortitle-ibid, pagetracker=false]{biblatex}
\renewcommand*{\mkbibcompletename}[1]{\textsc{#1}}
\DeclareDelimFormat[bib]{nametitledelim}{\addcolon\space}
\DeclareFieldFormat{title}{#1\isdot}
\DeclareFieldFormat{edition}{\textsuperscript{#1}} %Auflage hochgestellt
\renewbibmacro{publisher+location+date}{%kein Komma nach Verlag und Auflage vor Datum
\printlist{location}%
\setunit{\addcolon\space}%
\printlist{publisher}%
\setunit*{\space}%
\printfield{edition}
\usebibmacro{date}%
\newunit}
\DeclareBibliographyDriver{book}{%
\usebibmacro{bibindex}%
\usebibmacro{begentry}%
\usebibmacro{author/editor+others/translator+others}%
\setunit{\labelnamepunct}\newblock
\usebibmacro{maintitle+title}%
\newunit
\printlist{language}%
\newunit\newblock
\usebibmacro{byauthor}%
\newunit\newblock
\usebibmacro{byeditor+others}%
\newunit\newblock
%\printfield{edition}%Edition ausblenden
%\newunit
\iffieldundef{maintitle}
{\printfield{volume}%
\printfield{part}}
{}%
\newunit
\printfield{volumes}%
\newunit\newblock
\usebibmacro{series+number}%
\newunit\newblock
\printfield{note}%
\newunit\newblock
\usebibmacro{publisher+location+date}%
\newunit\newblock
\usebibmacro{chapter+pages}%
\newunit
\printfield{pagetotal}%
\newunit\newblock
\iftoggle{bbx:isbn}
{\printfield{isbn}}
{}%
\newunit\newblock
\usebibmacro{doi+eprint+url}%
\newunit\newblock
\usebibmacro{addendum+pubstate}%
\setunit{\bibpagerefpunct}\newblock
\usebibmacro{pageref}%
\newunit\newblock
\iftoggle{bbx:related}
{\usebibmacro{related:init}%
\usebibmacro{related}}
{}%
\usebibmacro{finentry}}
\begin{filecontents}{literatur.bib}
@book{ZimmerlingCharismatisch,
author = {Zimmerling, Peter},
title = {Charismatische Bewegungen},
publisher = {Vandenhoeck & Ruprecht},
location = {Göttingen},
year = {2018},
Edition = {2}
}
\end{filecontents}
\addbibresource{literatur.bib}
\begin{document}
Text \footcite{ZimmerlingCharismatisch}
\printbibliography
\end{document}
