Feature request: Add option to disable "New todo" button

I did some additional fettling as I was never keen on the button redesign but did like the idea of having it to the left of the search bar unlike old Joplin:

image

/* Force single row on resize */
.rli-noteList > div > div > div {
    flex-direction: row !important;
}

/* Remove todo */
button.new-todo-button {
    display: none;
}

/* Remove second col */
div.new-note-todo-buttons {
    grid-template-columns: 1fr 0;
    gap: 0px;
}

/* Remove text label */
button.new-note-button > span:nth-child(2) {
    display: none;
}

/* Remove spacing */
button.new-note-button > span.fa-plus {
    margin-right: 0px;
}
3 Likes