kennygorman

The love of Data, Database Engineering, Architecture, Entrepreneurship, and other assorted bits

My favorite Atom editor settings

31 August 2015

For the last six months or so I have been exclusively using Atom as my editor. If you aren’t familiar, Atom is the editor created by Github. It’s simple, easily hackable, and generally awesome. It also doesn’t seem to be as slow as it used to be.

I switched to Atom mainly because I liked the design and hack-ability of the editor, but also the simple Github integration without needing plug-ins. The editor has become the main tool I use every day. Mostly I use it for writing Github flavored markdown and code in Python, Java, SQL, or JS (MongoDB shell).

With my use case in mind, I thought I would share my favorite and fairly modest hacks:

##1. Themes

As one would expect, themes are simple in Atom. I use the One Dark built in theme. The ‘One’ themes came out in February of 2015, and are bundled with the editor itself. I love the capability to change color schemes between the editor itself and the syntax highlighting. But frankly haven’t done so myself, it’s good right from the box for me.

##2. vim mode

What can I say, I am a vi guy. My fingers perform vi commands without me thinking about it, and I love not having to use the mouse. I use the Atom vim-mode and ex-mode plugins. It’s a non-perfect implementation for sure, but it’s close enough that I stay productive. Also, it keeps my vi skills fresh.

To install vim-mode simply use apm as:

apm install vim-mode
apm install ex-mode

Then restart Atom.

##4. Plug-ins

I use just a couple simple plug-ins, nothing fancy.

##5. Font

Today I switched to Hack for my main editor and syntax font. Time will tell if I stay with it, but so far I realy like that I can drop the size of the font on pt and the text is still very readable. The installation instructions are here and here.

##6. Keyboard Shortcuts

I use a lot of vi commands via the keyboard, but here are some of the additional shortcuts I use inside Atom:

  • ⌘-f (find dialogue)
  • ⌘-] and ⌘-[ (indenting, because python)
  • ⌘-s (save, cause paranoid, even with auto-save plugin on)

Here is a handy list of most of them.

Getting Atom.

You can download Atom here.