Skip to content

Instantly share code, notes, and snippets.

View Hikali-47041's full-sized avatar
🥲

Hikaru Hikali-47041

🥲
View GitHub Profile
@Hikali-47041
Hikali-47041 / sed-zenkaku_hannkaku.sed
Last active March 20, 2023 08:49
sedで全角文字を半角文字に変換するやつ
y/abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890/abcdefghihklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890/
@Hikali-47041
Hikali-47041 / VSCode-settings.json
Last active June 11, 2023 11:22
VSCode の設定ファイル をかいたJSON file
{
/* Look and feel */
/* Themes */
/* KDE Breeze https://marketplace.visualstudio.com/items?itemName=kde.breeze */
/* Material Icon Theme https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme */
"workbench.colorTheme": "Breeze Dark",
"workbench.iconTheme": "material-icon-theme",
/* Fonts */
/* Share Tech Mono https://fonts.google.com/specimen/Share+Tech+Mono */
@Hikali-47041
Hikali-47041 / .zshrc
Last active September 7, 2023 02:05
zshrc
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1024