I am very new to Github Atom editor. It always shows hidden files such as .git
, .sass
in the side pane.
How to hide hidden files(dot files) in atom editor's side pane.
Open Control Panel and select Appearance and Personalization. In Windows 11 and 10, select File Explorer Options and go to View. In Windows 8 and 7, select Folder Options and go to View. In the Hidden files and folders section, choose to show or hide hidden files, folders, and drives.
Showing Hidden Files in AtomOpen Atom. Choose Settings > Core Settings. Uncheck Exclude VCS Ignored Paths.
Use the terminal to display the . git directory with the command ls -a . The ls command lists the current directory contents and by default will not show hidden files. If you pass it the -a flag, it will display hidden files.
Edit > Preferences > Packages
In the field below "Installed Packages" type: "Tree View". This package has a few settings you can toggle, "Hide Ignored Names" is what you're looking for.
It's a really buried setting, not sure why.
You can also add it to your config:
'tree-view': 'hideIgnoredNames': true
From the menu bar go to Edit > Preferences > Packages type in the filter "tree-view" click on the "Settings" button of this package and then check the "Hide Ignored Names" choice.
Now go to Edit > Preferences > Core . In the Ignored Names box enter .*
this will hide all the files/folders which are usually hidden in other file explorers.
If you want to hide normal files/folders just add them to this box separated by a Comma ,
for example : .*, Videos, Music
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With