Not to worry. I just didn’t want to look for the wrong answer!
Pulled directly from Blue Topaz:
/* file explorer :Wrap long nav text */
.nav-file-title,
.nav-folder-title {
white-space: normal;
width: auto;
}
Obuntu does things a little differently. It adds columns when wide enough (not a fan, but to each their own):
/* file explorer :Wrap long nav text */
.nav-file-title,
.nav-folder-title {
white-space: normal;
width: auto;
}
/* file explorer : Indent wrapped nav text */
.nav-file-title-content {
margin-left: 0px;
text-indent: 0px;
word-break: break-word;
}
/*----file explorer column view : slightly buggy ---- */
.nav-folder-children {
column-width: 200px;
}
If you need help adding this, there’s plenty on these forums about adding custom snippets. If all else, you can ask here again.
Credit to @dubinindmitry and @whyI for their inspiration and code.