Atom (text editor): Difference between revisions
m David moved page Atom to Atom (text editor) |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
[https://flight-manual.atom.io/getting-started/sections/installing-atom/ Reference]<br> | [https://flight-manual.atom.io/getting-started/sections/installing-atom/ Reference]<br> | ||
====Ubuntu==== | ====Ubuntu==== | ||
<syntaxhighlight lang="bash"> | |||
wget -qO - https://packagecloud.io/AtomEditor/atom/gpgkey | sudo apt-key add - | |||
sudo sh -c 'echo "deb [arch=amd64] https://packagecloud.io/AtomEditor/atom/any/ any main" > /etc/apt/sources.list.d/atom.list' | |||
sudo apt-get update | |||
sudo apt install atom | |||
</syntaxhighlight> | |||
==Languages== | ==Languages== | ||
Line 17: | Line 22: | ||
===Julia=== | ===Julia=== | ||
===JavaScript=== | |||
<pre> | |||
apm install linter linter-jshint | |||
</pre> | |||
==Keybindings== | ==Keybindings== |
Latest revision as of 08:13, 17 July 2021
Atom
Getting Started
Installation
Ubuntu
wget -qO - https://packagecloud.io/AtomEditor/atom/gpgkey | sudo apt-key add -
sudo sh -c 'echo "deb [arch=amd64] https://packagecloud.io/AtomEditor/atom/any/ any main" > /etc/apt/sources.list.d/atom.list'
sudo apt-get update
sudo apt install atom
Languages
Latex
apm install latex language-latex pdf-view
latex
- for compiling latex (requires TeX Live on the system)language-latex
- for latex syntax highlightingpdf-view
- for viewing the compiled PDFs
Julia
JavaScript
apm install linter linter-jshint
Keybindings
You can create custom keybindings by editing the keymap.cson
file.
This can be found at C:\Users\[username]\.atom\keymap.cson
My Keybindings
Useful Packages
atom-ternjs
Provides documentation and autocomplete functionality for JavaScript (ES5+)