This was working to disable some default items:
from Default.side_bar import *
class NewFileAtCommand(sublime_plugin.WindowCommand):
def is_visible(self):
return False
def is_enabled(self):
return False
For some reason that does not work anymore