From 0c202d3bf14f71eedf5b87c7c2258a36e0087bbb Mon Sep 17 00:00:00 2001 From: David Celis Date: Tue, 23 Nov 2021 11:23:20 -0800 Subject: [PATCH] Stop using Atom --- .gitignore | 5 -- Makefile | 1 - atom/.gitignore | 5 -- atom/config.cson | 107 ----------------------------------- atom/github.cson | 1 - atom/init.coffee | 14 ----- atom/keymap.cson | 18 ------ atom/package-deps-state.json | 3 - atom/snippets.cson | 15 ----- atom/styles.less | 23 -------- 10 files changed, 192 deletions(-) delete mode 100644 atom/.gitignore delete mode 100644 atom/config.cson delete mode 100644 atom/github.cson delete mode 100644 atom/init.coffee delete mode 100644 atom/keymap.cson delete mode 100644 atom/package-deps-state.json delete mode 100644 atom/snippets.cson delete mode 100644 atom/styles.less diff --git a/.gitignore b/.gitignore index 7cce478..d7b4795 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,3 @@ -atom/.atom-socket-secret-* -atom/blob-store -atom/packages -atom/recovery - Brewfile.lock.json bundle/cache diff --git a/Makefile b/Makefile index ab1ed06..485f109 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,4 @@ symlinks = \ - atom \ bundle \ config \ local \ diff --git a/atom/.gitignore b/atom/.gitignore deleted file mode 100644 index d59ea12..0000000 --- a/atom/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -storage -compile-cache -dev -.apm -.node-gyp diff --git a/atom/config.cson b/atom/config.cson deleted file mode 100644 index 3b63b29..0000000 --- a/atom/config.cson +++ /dev/null @@ -1,107 +0,0 @@ -"*": - "atom-beautify": {} - "atom-ide-ui": - "atom-ide-code-format": - formatOnSave: true - hyperclick: - darwinTriggerKeys: "shiftKey,metaKey" - use: {} - "autocomplete-elixir": - elixirPath: "/usr/local/bin/elixir" - erlangHome: "/usr/local/lib/erlang/bin/" - "autocomplete-paths": {} - "autocomplete-plus": - fileBlacklist: [ - "*.md" - "*.txt" - ] - core: - disabledPackages: [ - "autocomplete-paths" - "pigments" - "linter" - "linter-ui-default" - "linter-rust" - ] - projectHome: "/Users/davidcelis/Developer" - telemetryConsent: "no" - themes: [ - "one-dark-ui" - "ariake-dark-syntax" - ] - titleBar: "custom" - editor: - fontFamily: "FiraCode-Light" - fontSize: 18 - invisibles: {} - preferredLineLength: 120 - "exception-reporting": - userId: "f951f304-7607-ed69-34b1-50430d1496f5" - "file-icons": - coloured: false - "fuzzy-finder": - scoringSystem: "fast" - useRipGrep: true - "git-blame": - columnWidth: 353 - "git-plus": - general: - _analyticsUserId: "7166f9aa-c565-4854-ae51-7f6e672459f0" - github: - gitDiagnostics: true - "go-plus": - goPath: "/usr/local/share/go" - panel: - displayMode: "closed" - test: - runTestsOnSave: false - linter: {} - "linter-elixirc": - elixircPath: "/usr/local/bin/elixirc" - mixPath: "/usr/local/bin/mix" - "linter-ui-default": - panelHeight: 300 - "no-title-bar": {} - "one-dark-ui": {} - "platformio-ide-terminal": - ansiColors: - normal: - black: "#27292c" - blue: "#93b2ca" - cyan: "#9ac9c4" - green: "#c2c77b" - magenta: "#c0a7c7" - red: "#d77c79" - white: "#d0d2d1" - yellow: "#f4cf87" - zBright: - brightBlack: "#a7a8a7" - brightBlue: "#93b2ca" - brightCyan: "#9ac9c4" - brightGreen: "#c2c77b" - brightMagenta: "#c0a7c7" - brightRed: "#d77c79" - brightYellow: "#f4cf87" - iconColors: - blue: "#93b2ca" - cyan: "#9ac9c4" - green: "#c2c77b" - magenta: "#c0a7c7" - orange: "#fba16d" - pink: "#cd99c1" - purple: "#b188c9" - red: "#d77c79" - yellow: "#f4cf87" - style: - fontFamily: "FiraCode-Light" - fontSize: "18" - theme: "one-dark" - "recent-files": - updated: false - "terminal-plus": - core: {} - style: {} - "tree-view": - hideIgnoredNames: true - welcome: - showOnStartup: false diff --git a/atom/github.cson b/atom/github.cson deleted file mode 100644 index 031c17c..0000000 --- a/atom/github.cson +++ /dev/null @@ -1 +0,0 @@ -# Store non-visible GitHub package state. diff --git a/atom/init.coffee b/atom/init.coffee deleted file mode 100644 index 4d10e77..0000000 --- a/atom/init.coffee +++ /dev/null @@ -1,14 +0,0 @@ -# Your init script -# -# Atom will evaluate this file each time a new window is opened. It is run -# after packages are loaded/activated and after the previous editor state -# has been restored. -# -# An example hack to make opened Markdown files always be soft wrapped: -# -# path = require 'path' -# -# atom.workspaceView.eachEditorView (editorView) -> -# editor = editorView.getEditor() -# if path.extname(editor.getPath()) is '.md' -# editor.setSoftWrap(true) diff --git a/atom/keymap.cson b/atom/keymap.cson deleted file mode 100644 index 43ec695..0000000 --- a/atom/keymap.cson +++ /dev/null @@ -1,18 +0,0 @@ -# Your keymap -# -# Atom keymaps work similarly to stylesheets. Just as stylesheets use selectors -# to apply styles to elements, Atom keymaps use selectors to associate -# keystrokes with events in specific contexts. -# -# You can create a new keybinding in this file by typing "key" and then hitting -# tab. -# -# Here's an example taken from Atom's built-in keymap: -# -# '.editor': -# 'enter': 'editor:newline' -# -# '.workspace': -# 'ctrl-P': 'core:move-up' -# 'ctrl-p': 'core:move-down' -# diff --git a/atom/package-deps-state.json b/atom/package-deps-state.json deleted file mode 100644 index 655ea6b..0000000 --- a/atom/package-deps-state.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "ignored": [] -} diff --git a/atom/snippets.cson b/atom/snippets.cson deleted file mode 100644 index 9578993..0000000 --- a/atom/snippets.cson +++ /dev/null @@ -1,15 +0,0 @@ -# Your snippets -# -# Atom snippets allow you to enter a simple prefix in the editor and hit tab to -# expand the prefix into a larger code block with templated values. -# -# You can create a new snippet in this file by typing "snip" and then hitting -# tab. -# -# An example CoffeeScript snippet to expand log to console.log: -# -# '.source.coffee': -# 'Console log': -# 'prefix': 'log' -# 'body': 'console.log $1' -# diff --git a/atom/styles.less b/atom/styles.less deleted file mode 100644 index 5e8456f..0000000 --- a/atom/styles.less +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Your Stylesheet - * - * This stylesheet is loaded when Atom starts up and is reloaded automatically - * when it is changed. - * - * If you are unfamiliar with LESS, you can read more about it here: - * http://www.lesscss.org - */ - -atom-text-editor { - -webkit-font-smoothing: antialiased; - text-rendering: optimizeLegibility; -} - -atom-text-editor.editor .syntax--string.syntax--quoted, -atom-text-editor.editor .syntax--string.syntax--regexp { - -webkit-font-feature-settings: "liga" off, "calt" off; -} - -.platformio-ide-terminal .xterm { - * { font-weight: lighter !important; } -} -- 2.51.2