10 2022 档案
摘要:问题记录 $ cargo expand Checking helo v0.1.0 (/Users/Buzz/Documents/git/rust-lang/hello) error: the option `Z` is only accepted on the nightly compiler er
阅读全文
摘要:秘钥生成 # -m PEM 将密钥的格式设为 PEM # -t rsa 要创建的密钥类型为RSA 格式 # -b 4096 密钥的位数为4096 # -C 追加到公钥文件末尾以便于识别的注释 # -f 私钥文件的文件名 ssh-keygen -m PEM -t rsa -b 4096 -C 'com
阅读全文
摘要:vimrc $ vi ~/.vimrc set number "显示行号 "set nowrap "不换行 set shiftwidth=2 "默认缩进4个空格 set softtabstop=2 "使用tab时 tab空格数 set tabstop=2 "tab代表4个空格 set laststa
阅读全文
摘要:Default config $ vi ~/.emacs.d/init.el ; 使用command键作为meta键 ;;; I prefer cmd key for meta (setq mac-option-key-is-meta nil mac-command-key-is-meta t ma
阅读全文