In Unix, as @gronostaj said, files proceeded with a .
are hidden by default (Ctrl+h toggles this in many environments). However, in Sublime - you can manually control what types of files are shown/hidden separate from what the system default is.
For you to change your settings you need to adjust your User Preferences
file with the following:
{ "folder_exclude_patterns": [".svn", ".hg", "CVS"], "file_exclude_patterns": ["*.pyc", "*.pyo", "*.exe", "*.dll", "*.obj","*.o", "*.a", "*.lib", "*.so", "*.dylib", "*.ncb", "*.sdf", "*.suo", "*.pdb", "*.idb", ".DS_Store", "*.class", "*.psd", "*.db", "*.sublime-workspace"] }
Add/remove as necessary from there.
On Mac, your preferences are under Sublime Text > Preference > Settings - User
. I don't recall the menu structure on my windows box, but it's probably under Tools
.
For me: