From bfe979d702ced21d102dc08bdfe8ff32fb250fa6 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Fri, 29 Jul 2022 01:11:14 -0400 Subject: [PATCH] meta: Remove code I've been trying to like vscode for years, especially since it was widely regarded as one of the best editors of all time. As cool as VS Code is, however, I always ended up using neovim and a terminal since it's simply easier for me to get things done that way. --- code/.config/Code - OSS/User/settings.json | 24 ------------------- code/README.md | 27 ---------------------- 2 files changed, 51 deletions(-) delete mode 100644 code/.config/Code - OSS/User/settings.json delete mode 100644 code/README.md diff --git a/code/.config/Code - OSS/User/settings.json b/code/.config/Code - OSS/User/settings.json deleted file mode 100644 index 45fcb8c9..00000000 --- a/code/.config/Code - OSS/User/settings.json +++ /dev/null @@ -1,24 +0,0 @@ -// New Start: A modern Arch workflow built with an emphasis on functionality. -// Copyright (C) 2018 Donovan Glover -{ - // Look and feel - "workbench.colorTheme": "vs-wal", - - // Always start with the previous workspace - "workbench.startupEditor": "newUntitledFile", - - // Confirmations - "explorer.confirmDelete": false, - "explorer.confirmDragAndDrop": false, - - // Toggle the menu bar with alt - "window.menuBarVisibility": "toggle", - - // Disable the enabled-by-default telemetry - "telemetry.enableTelemetry": false, - "telemetry.enableCrashReporter": false, - - // Prefer yarn over npm - "eslint.packageManager": "yarn" -} -// vim:syn=javascript diff --git a/code/README.md b/code/README.md deleted file mode 100644 index caff0454..00000000 --- a/code/README.md +++ /dev/null @@ -1,27 +0,0 @@ -# Code - -> NOTE: As of 2021, I have no interest in the (vs)code text editor. Although the out-of-the-box features are nice and all, trying to emulate vim-like functionality was more pain than it was worth (even after using [vscode-neovim][vscode-neovim]). Additionally, the battery drain is unreal compared to running an equivalent [neovim](/neovim) experience. - -![Screenshot of Code with pywal support.](/.archlinux/screenshots/code.jpg?raw=true) - -> If you want (vs)code to honor [pywal](/wal) color schemes, use [vscode-wal][vscode-wal]. - -[Code][code] is an open source build of [a popular][vscode] GUI text editor. - -## Use Cases - -Code can be used to: - -- Navigate graphical file trees entirely with the mouse -- Provide an editor for non-vim users as needed -- Perform a myriad of common command line operations through a point-click GUI - -You should not use Code if: - -- You want to learn how compilers, git, find, grep, and other software work -- You want to learn [vim](/vim), the standard text editor - -[code]: https://www.archlinux.org/packages/community/x86_64/code/ -[vscode]: https://github.com/Microsoft/vscode -[vscode-neovim]: https://github.com/asvetliakov/vscode-neovim -[vscode-wal]: https://github.com/bluedrack/vscode-wal