wiki
Getting startedGuidesFAQ
1.0.0
1.0.0
  • b-it-bots wiki
  • @home
    • Getting started
      • First steps
      • Setting up your development environment
        • Configuring your editor
        • Using ssh
      • Adding your first contribution
    • Tutorials
      • Architecture
    • Guides
      • git
        • Making good commits
        • Branching model
        • Adding git aliases to make your life easier
        • Creating a release
      • SSH
      • ROS
        • Creating a new package
          • Creating a new node
        • Creating a new message, service or action
        • Testing in ROS
        • Linting
      • Coding conventions
        • C++
        • Python
      • Toolkit
        • CLion
        • Atom configuration
        • Using vim
        • TMUX - Terminal Multiplexer
    • Resources
    • FAQ
      • git
  • @work
    • 2018-05-06-navigation-atwork
    • 2018-05-06-simulation_mapping
    • How to use the RealSense2 camera
    • Getting the classifier from a data set
Powered by GitBook
On this page
  • Installation
  • Configuration

Was this helpful?

  1. @home
  2. Guides
  3. Toolkit

Atom configuration

PreviousCLionNextUsing vim

Last updated 4 years ago

Was this helpful?

Installation

Option 1: Following their .

  1. Download their latest stable release .

  2. Run the following:

# Install atom
sudo dpkg -i atom-amd64.deb

# Install Atom's dependencies if they are missing
sudo apt-get -f install

Option 2: Adding the unofficial ppa

Run the following commands:

sudo add-apt-repository ppa:webupd8team/atom
sudo apt-get update
sudo apt-get install atom

Configuration

You can easily open your settings by pressing ctrl+,. (Also found in Edit>Preferences).

Minimal setup

  • language-ini

  • language-cmake

  • atom-ros

  • linter-pycodestyle

  • linter

  • linter-ui-default

  • linter-clang

  • intentions

  • busy-signal

Other recommended packages include (there is an atom-recommended.sh script to install them):

  • minimap

  • highlight-selected

  • minimap-highlight-selected

  • minimap-git-diff

  • minimap-find-and-replace

  • minimap-selection

Updating your config file

cp -f ~/dotfiles/atom/config.cson ~/.atom/config.cson

After you have installed atom, there are a few additional packages that you should install. You can do this by runnig the script atom-minimum.sh found in the repository in your terminal. This will install the following packages:

Copy the contents of the config.cson file in this repository to your atom config. Assuming you cloned the repository on your home folder:

official instructions
here
dotfiles
dotfiles