There's an answer here showing how to minimize the navigation pane to make it show the icons only. Basically, you just need to click the first folder icon on the left.
How can I hide the vertical navigation pane on the left completely?
There's an answer here showing how to minimize the navigation pane to make it show the icons only. Basically, you just need to click the first folder icon on the left.
How can I hide the vertical navigation pane on the left completely?
There's an open issue for this feature which is not implemented yet.
So, there's no current way of setting a custom rule in the Settings > Advanced Settings Editor > Sidebar
menu.
While this feature is not added, what you can do is to write a small browser extension to execute this code on every notebook server (in the onDOMContentLoaded event):
const leftSidebar = document.querySelector('.jp-SideBar')
document.querySelector('#jp-main-content-panel').removeChild(leftSidebar)
You can try this code in the inspector console and then open/create a new notebook.