Skip to content

Instantly share code, notes, and snippets.

@yushe629
yushe629 / .bashrc
Created February 7, 2026 12:00
Doom Emacs Client/Server Daemon
# (option) set alias
alias ec="emacsclient -t"
@yushe629
yushe629 / vim_japanese_input.ahk
Created July 23, 2025 23:26
Escape from vim insert mode with IME off in AHK v2
; Vim系で日本語入力している際に、Insert->normal時にIME OFFにするスクリプト
#Requires AutoHotkey v2.0
#InputLevel 1
Esc:: {
Send("{Esc}")
IME_OFF()
}
^[:: {