aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--atom/config.cson108
-rw-r--r--atom/init.coffee16
-rw-r--r--atom/keymap.cson28
-rw-r--r--atom/styles.less24
-rwxr-xr-xinstall.sh7
-rw-r--r--packages.txt2
6 files changed, 2 insertions, 183 deletions
diff --git a/atom/config.cson b/atom/config.cson
deleted file mode 100644
index 6d99888..0000000
--- a/atom/config.cson
+++ /dev/null
@@ -1,108 +0,0 @@
-"*":
- Repl:
- python3: "python"
- "autoclose-html":
- forceInline: [
- "*"
- ]
- "autocomplete-python":
- useKite: false
- autosave: {}
- core:
- disabledPackages: [
- "linter"
- ]
- telemetryConsent: "no"
- themes: [
- "atom-dark-ui"
- "monokai"
- ]
- editor:
- fontFamily: "Source Code Pro"
- fontSize: 15
- invisibles: {}
- scrollPastEnd: true
- showIndentGuide: true
- tabLength: 4
- "exception-reporting":
- userId: "1bf124c7-3f32-dd9a-658e-b3fb13caee50"
- "ide-python":
- pylsPlugins:
- autopep8:
- enabled: false
- flake8:
- enabled: true
- jedi_completion:
- include_params: false
- jedi_definition:
- follow_builtin_imports: true
- follow_imports: true
- jedi_hover:
- enabled: false
- jedi_references:
- enabled: false
- jedi_signature_help: {}
- mccabe:
- enabled: false
- pyflakes:
- enabled: false
- linter: {}
- "linter-flake8": {}
- "linter-ui-default":
- panelHeight: 206
- "lisp-paredit":
- enabled: false
- strict: false
- minimap:
- plugins:
- bookmarks: true
- bookmarksDecorationsZIndex: 0
- codeglance: true
- codeglanceDecorationsZIndex: 0
- cursorline: true
- cursorlineDecorationsZIndex: 0
- "git-diff": true
- "git-diffDecorationsZIndex": 0
- "highlight-selected": true
- "highlight-selectedDecorationsZIndex": 0
- "split-diff": true
- "split-diffDecorationsZIndex": 0
- "one-dark-ui":
- layoutMode: "Compact"
- "rst-preview-pandoc":
- pandocOpts: "-frst -thtml --webtex"
- "spell-check":
- grammars: [
- "source.yaml"
- "text.plain"
- "text.restructuredtext"
- ]
- localePaths: [
- "/usr/share/myspell/dicts/en_US.dic"
- ]
- locales: [
- "en-US"
- ]
- "split-diff":
- ignoreWhitespace: true
- syncHorizontalScroll: true
- "symbols-tree-view":
- defaultWidth: 400
- tabs:
- usePreviewTabs: true
- "toggle-packages":
- togglePackages: [
- "vim-mode-plus"
- ]
- "tool-bar":
- visible: false
- "tree-view": {}
- "vim-mode": {}
- welcome:
- showOnStartup: false
- "yaml-path":
- activateOnStart: "Don't show on start"
-".clojure.source":
- editor:
- autoIndent: false
- autoIndentOnPaste: false
diff --git a/atom/init.coffee b/atom/init.coffee
deleted file mode 100644
index 389716e..0000000
--- a/atom/init.coffee
+++ /dev/null
@@ -1,16 +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 log to the console when each text editor is saved.
-#
-# atom.workspace.observeTextEditors (editor) ->
-# editor.onDidSave ->
-# console.log "Saved! #{editor.getPath()}"
-
-
-
-process.env.LANG = 'en_US.utf8'
-process.env.PYTHONPATH = "/home/bozo/development/hat-open/src_py"
diff --git a/atom/keymap.cson b/atom/keymap.cson
deleted file mode 100644
index a368b04..0000000
--- a/atom/keymap.cson
+++ /dev/null
@@ -1,28 +0,0 @@
-# Your keymap
-#
-# Atom keymaps work similarly to style sheets. Just as style sheets use
-# selectors to apply styles to elements, Atom keymaps use selectors to associate
-# keystrokes with events in specific contexts. Unlike style sheets however,
-# each selector can only be declared once.
-#
-# 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:
-#
-# 'atom-text-editor':
-# 'enter': 'editor:newline'
-#
-# 'atom-workspace':
-# 'ctrl-shift-p': 'core:move-up'
-# 'ctrl-p': 'core:move-down'
-#
-# You can find more information about keymaps in these guides:
-# * https://atom.io/docs/latest/using-atom-basic-customization#customizing-key-bindings
-# * https://atom.io/docs/latest/behind-atom-keymaps-in-depth
-#
-# This file uses CoffeeScript Object Notation (CSON).
-# If you are unfamiliar with CSON, you can read more about it in the
-# Atom Flight Manual:
-# https://atom.io/docs/latest/using-atom-basic-customization#cson
-
diff --git a/atom/styles.less b/atom/styles.less
deleted file mode 100644
index 7a9cc70..0000000
--- a/atom/styles.less
+++ /dev/null
@@ -1,24 +0,0 @@
-
-.tree-view {
- font-size: 16px;
-}
-
-.tab-bar .tab {
- font-size: 16px;
-}
-
-.symbols-tree-view {
- font-size: 14px;
-}
-
-.editor {
- -webkit-font-smoothing: antialiasing;
-}
-
-.editor, atom-text-editor.editor {
- .bracket-matcher .region {
- position: absolute;
- border: 1px solid rgba(0, 255, 0, 0.7);
- background-color: rgba(0, 255, 0, 0.3);
- }
-}
diff --git a/install.sh b/install.sh
index 0ef009b..4ce5c85 100755
--- a/install.sh
+++ b/install.sh
@@ -21,13 +21,6 @@ install_packages ~/.dotfiles/packages.txt
# alacritty
symlink ~/.dotfiles/alacritty ~/.config/alacritty
-# atom
-mkdir -p ~/.atom
-symlink ~/.dotfiles/atom/config.cson ~/.atom/config.cson
-symlink ~/.dotfiles/atom/init.coffee ~/.atom/init.coffee
-symlink ~/.dotfiles/atom/keymap.cson ~/.atom/keymap.cson
-symlink ~/.dotfiles/atom/styles.less ~/.atom/styles.less
-
# bspwm
symlink ~/.dotfiles/bspwm ~/.config/bspwm
diff --git a/packages.txt b/packages.txt
index fc92ce4..b7bfc4a 100644
--- a/packages.txt
+++ b/packages.txt
@@ -47,6 +47,8 @@ ntfs-3g
okular
opendoas
openssh
+pam-gnupg
+pam_ssh
parted
pavucontrol
picom