Skip to content

gui text editor Notes

ipatch edited this page May 7, 2018 · 4 revisions

Contents

Working with Atom

To get Atom up and running 🏃 run the below commad after you have it installed

apm install --packages-file /path/to/where/you/saved/packages.list

Giving [credit](https://discuss.atom.io/t/how-to-backup-all-your-settings/15674/3) where credit is due.

It can be beneficial to add a custom filetype for files ending with .fish to have syntax highlighting for fish functions files, and not having to manually set the file type in the lower right hand corner of the atom editor.

To accomplish the above mentioned task, open the atom preferences with command+, on macOS. Then look for a button labeled Open Config Folder.

Add the below lines to the config.cson file.

customFileTypes:
"source.shell": [

"fish"
]

within the below block,

core:

Credit

Useful Links

TODOs

Clone this wiki locally