atom installation and extension

General Discussions
Post Reply
Mohammedaln
Posts: 10
Joined: Sat Nov 02, 2019 3:41 pm

atom installation and extension

Post by Mohammedaln » Sat Aug 22, 2020 6:27 am

atom

atom installation

Code: Select all

wget -O atom-amd64.deb https://atom.io/download/deb
sudo apt install gdebi-core
sudo gdebi atom-amd64.deb
atom

================================
delete atom :

Code: Select all

sudo apt remove --purge atom
sudo apt-get remove atom
sudo rm -rf /usr/local/bin/atom  &&
sudo rm -rf /usr/local/bin/apm &&
sudo rm -rf ~/atom &&
sudo rm -rf ~/.atom &&
sudo rm -rf ~/.config/Atom-Shell &&
sudo rm -rf /usr/local/share/atom/



=====================================================
Extenstion

https://www.youtube.com/watch?v=aiXNKHKWlmY

- file-icons
- atom-live-server Packages>> Atom-live-server>start server
- todo packages>>todo>toggle
//TODO : add ...

- minimap
- pigments
- linter
- linter-jshint
- linter-jscs

- atom-beautfy
- ask a stack
- highlight-selected




------------------------
- script ctrl + shift + b
- predawm //theme ui and syntax
//check it exsist by defualt
- autocomplete-plus
- autocomplete-snippets
//
- autocomplete-python


https://www.youtube.com/watch?v=a_ZtAv_-zkE
- python-autopep8
/*
in terminal
>> sudo pip install autopep8
*/
python


References:
https://linuxconfig.org/install-atom-on ... ver-linux

Post Reply