[*] Launcher: Smart Launcher 6
- For the layout, I'm using the "classic theme" and replacing all the homescreen icons and widgets to only include a spotify classic and battery widget. I'm also using JetBrains Mono as my font everywhere.
| #!/bin/bash | |
| [[ $- != *i* ]] && return | |
| # EXPORTS | |
| export PATH="$PATH:~/.foreman/bin" | |
| export PATH="$PATH:~/.cargo/bin" | |
| export PATH="$PATH:~/.luaU/bin" | |
| export HISTFILESIZE=10000 | |
| export HISTSIZE=500 |
[*] Launcher: Smart Launcher 6
| "[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"] |