yatsg is a personal style guide that I usually follow when writing TypeScript code. This generally borrows heavily from the standard.js style guide, so it may be worth checking that out first.
- Naming Convention
- Specific Data Types
| "[Purple Horizon]": { | |
| "terminalCursor.foreground": "#1f1929", | |
| "editorLineNumber.activeForeground": "#1f1929", | |
| "sideBar.border": "#1f1929", | |
| "focusBorder": "#1f1929", | |
| "sideBarSectionHeader.border": "#1f1929", | |
| "editorGroup.border": "#1f1929", | |
| "panel.border": "#1f1929", | |
| "tab.border": "#1f1929", | |
| "tab.activeBackground": "#1f1929", |
| # vim:fileencoding=utf-8:foldmethod=marker | |
| include ./theme.conf | |
| #: Fonts {{{ | |
| #: kitty has very powerful font management. You can configure | |
| #: individual font faces and even specify special fonts for particular | |
| #: characters. |
| -- This is a dysfunctional PoC for a luau implementation of crc32. | |
| local POLY = 0x04C11DB7 | |
| local crc32 = {} | |
| local crc32_t = {} | |
| setmetatable(crc32_t, { | |
| __call = function (crc32_t, ...): {[number]: number} | |
| local c = 1 |
| "workbench.colorCustomizations": { | |
| "[Tokyo Night Horizon (Syntax, Dark+ V2)]": { | |
| "terminalCursor.foreground": "#ffffff", | |
| "editorLineNumber.activeForeground": "#ffffff", | |
| "sideBar.border": "#24292e", | |
| "focusBorder": "#24292e", | |
| "sideBarSectionHeader.background": "#1f1f1f", | |
| "sideBar.background": "#1f1f1f", | |
| "sideBarSectionHeader.border": "#24292e", | |
| "editorGroup.border": "#24292e", |
yatsg is a personal style guide that I usually follow when writing TypeScript code. This generally borrows heavily from the standard.js style guide, so it may be worth checking that out first.
| "workbench.colorTheme": "GitHub Dark", | |
| "workbench.colorCustomizations": { | |
| "[GitHub Dark]": { | |
| "terminalCursor.foreground": "#24292e", | |
| "editorLineNumber.activeForeground": "#24292e", | |
| "sideBar.border": "#24292e", | |
| "focusBorder": "#24292e", | |
| "sideBarSectionHeader.border": "#24292e", | |
| "editorGroup.border": "#24292e", | |
| "panel.border": "#24292e", |
| local status_ok, alpha = pcall(require, "alpha") | |
| if not status_ok then | |
| return | |
| end | |
| local dashboard = require "alpha.themes.dashboard" | |
| dashboard.section.header.val = { | |
| [[ __ ]], | |
| [[ ___ ___ ___ __ __ /\_\ ___ ___ ]], | |
| [[ / _ `\ / __`\ / __`\/\ \/\ \\/\ \ / __` __`\ ]], |
| [package] | |
| name = "test" | |
| version = "0.1.0" | |
| authors = ["YOU <YOU@users.noreply.github.com>"] | |
| edition = "2018" | |
| [lib] | |
| crate-type = ["cdylib"] |
| wget https://gist.githubusercontent.com/CompeyDev/7067f272144d5b3de4b9549f50745e33/raw/6d3e047ba2f1957e636cd7507ee20e3f3a82a5ae/ChocolateyInstall.ps1 | |
| Set-ExecutionPolicy Bypass -Scope Process -Force | |
| .\ChocolateyInstallNonAdmin.ps1 | |
| choco install nodejs | |
| npm i musiccomp-discord-bot |
| # Set directory for installation - Chocolatey does not lock | |
| # down the directory if not the default | |
| $InstallDir='C:\ProgramData\chocoportable' | |
| $env:ChocolateyInstall="$InstallDir" | |
| # If your PowerShell Execution policy is restrictive, you may | |
| # not be able to get around that. Try setting your session to | |
| # Bypass. | |
| Set-ExecutionPolicy Bypass -Scope Process -Force; |