Projeto

Geral

Perfil

Atominstall » Histórico » Versão 6

Versão 5 (Mauricio Luiz Viani, 10/07/2018 14:35 h) → Versão 6/7 (Mauricio Luiz Viani, 19/07/2018 11:09 h)

h1. Instalação do Atom

Abrir uma janela de terminal e mudar para o usuário root:

<pre>
# sudo su
</pre>

h2. Baixar o pacote do Atom para Debian:

<pre>
Entrar no site https://www.atom.io
Clicar no link do pacote para Debian
</pre>

h2. Instalar o Atom

<pre>
# dpkg -i atom-amd64.deb
</pre>

h2. Configure o Atom:

<pre>
Inicie o Atom

Menu Edit / Preferences

Core / File Encoding / iso-8859-1
Core / Send Telemetry to the Atom Team / Do not send

Editor / Font Family / DejaVu San Mono
Editor / font Size / 15
Editor / Show Indent Guide / True
Editor / Show invisibles / True
Editor / Tab Type / hard soft

Packages / Whitespace / Settings / Remove Trailing Whitespaces / False
Packages / Welcome / Settings / Show on Startup / False
Packages / Tree-view / Settings / Hide VCS Ignored Files / False

Menu Edit / Config

Confira se o conteúdo está parecido com isso:

"*":
core:
fileEncoding: "iso88591"
telemetryConsent: "no"
editor:
fontFamily: "DejaVu Sans Mono"
fontSize: 15
showIndentGuide: true
showInvisibles: true
tabType: "hard" &quot;soft&quot;
"exception-reporting":
userId: "<aqui vai o hash do seu usuário>"
"tree-view":
hideVcsIgnoredFiles: false
welcome:
showOnStartup: false
whitespace:
removeTrailingWhitespace: false
</pre>