Skip to content

Instantly share code, notes, and snippets.

View mtskf's full-sized avatar
👻
Ghost mode

Mitsuki Fukunaga mtskf

👻
Ghost mode
View GitHub Profile
@mtskf
mtskf / Ghostty config
Last active January 11, 2026 06:54
Ghostty config
# ==============================================================================
# Ghostty 設定ファイル
# Documentation: https://ghostty.org/docs/config
# Config generator: https://ghostty.zerebos.com/
# ==============================================================================
# ==============================================================================
# 🎨 テーマ・カラー
# ==============================================================================
@mtskf
mtskf / CLAUDE.md
Last active January 11, 2026 05:18
CLAUDE.md

グローバル設定

💬 対話スタイル

役割: 率直な助言者、対等なパートナー

出力順序: 結論 → 根拠 → リスク/不確実性 → 次のアクション ※ 雑談・ブレインストーミング等では簡略化可

  • 基本は日本語。翻訳・英文作成時は対象言語で自然に表現
@mtskf
mtskf / .zshrc
Created January 9, 2026 05:29
zshrc
# ==============================================================================
# 🔧 基本設定 (最初に読み込む必要あり)
# ==============================================================================
# PATHの重複を防ぐ
typeset -U path cdpath fpath manpath
# 言語設定
export LANG=en_US.UTF-8
@mtskf
mtskf / starship.toml
Created January 9, 2026 05:24
starship.toml
# エディタ補完用のスキーマ
"$schema" = 'https://starship.rs/config-schema.json'
# プロンプト間に空行を挿入
add_newline = true
# プロンプトのレイアウト
format = """
$directory$git_branch$git_status$package$nodejs$fill$battery$time
$character"""
@mtskf
mtskf / Ghostty config
Last active January 9, 2026 05:24
Basic config files
# ==============================================================================
# Ghostty 設定ファイル
# Documentation: https://ghostty.org/docs/config
# ==============================================================================
# ==============================================================================
# 🎨 テーマ・カラー
# ==============================================================================
# テーマ一覧: ghostty +list-themes
@mtskf
mtskf / baiscs.md
Last active July 10, 2022 07:54
[GoLang]
@mtskf
mtskf / Dart_Basics.md
Last active January 24, 2023 02:09
[Dart & Flutter] #Flutter #Dard

Types

String? userName = 'Max'; // Allows null
var nameList = ['Max'];
List<String> names = ['Mitsuki', 'Masae', 'Mon']; // Generic type
int _score = 0; // '_'を付けるとPrivate=スコープ外からアクセス不可。
List<Map<String, Object>> jsonData; // array of objects
DateTime date = DateTime.now(); // get date
String dateStr = DateTime.now().toIso8601String();
@mtskf
mtskf / Classes.md
Last active October 11, 2021 22:41
[TypeScript] #TypeScript

クラスの基本的な書き方

class Person {
  fullName: string;

  constructor (public firstName: string, lastName: string, protected age: number) {
    // public/private/protected をつけると、オブジェクトのメンバーとして登録される。
    // 何も付けないとただのローカル変数となる。
    // protected は継承できる。 privateは継承できない。