Steps
- Launch atom
- From the menu: edit > preferences (atom > prefernces on Mac)
- From the side menu, click the button “Open Config Folder”
Now a new atom IDE should open.
- Open the file “config.cson”
- Add
ignoredNames: ["node_modules"]undercore
Example of a config.cson
"*":
core:
ignoredNames: [
".git"
"node_modules"
]
editor: {}
minimap:
plugins:
"highlight-selected": true
"highlight-selectedDecorationsZIndex": 0
welcome:
showOnStartup: false
Hope this helps