scoop
先从 Microsoft Store 安装 Windows Terminal。然后 power shell 执行:
iwr -useb https://gitee.com/glsnames/scoop-installer/raw/master/bin/install.ps1 | iex
scoop install 7zip git
git config --global http.sslVerify false
scoop bucket add extras java versions
scoop install aria2 vscode autohotkey # fail
scoop install python everything wox # su root
scoop install liberica17-jdk scala scala2 maven sbt idea
微软输入法
双拼
- win + R,输入 regedit,打开注册表
- 打开 计算机\HKEY_CURRENT_USER\Software\Microsoft\InputMethod\Settings\CHS
- 新建一个字符串值,名为 UserDefinedDoublePinyinScheme0,值为 小鹤双拼2^*iuvdjhcwfg^xmlnpbksqszxkrltvyovt
- 设置微软拼音输入法,选择双拼,把 小鹤双拼 设置为默认
短语
date %yyyy%-%MM%-%dd%
time %yyyy%-%MM%-%dd% %HH%:%mm%:%ss%AutoHotKey
开机启动目录 C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp ``` ;smart winq::Send !{f4}
;smart shift up::up up & 1::SendInput +1 up & 2::SendInput +2 up & 3::SendInput +3 up & 4::SendInput +4 up & 5::SendInput +5 up & Esc::SendInput ~
;smart alt !z::Send ^z !x::Send ^x !c::Send ^c !v::Send ^v !a::Send ^a !s::Send ^s !l::Send ^l !f::Send ^f !h::Send ^h !w::Send ^w !r::Send ^r !t::Send ^t
;home end !Left::SendInput {Home DownTemp} +!Left::SendInput +{Home} !Right::SendInput {End} +!Right::SendInput +{End} !Up::SendInput ^{Home} +!Up::SendInput +^{Home} !Down::SendInput ^{End} +!Down::SendInput +^{End}
另外,调试 ahk 脚本可以运行以下代码。
persistent ;让脚本持久运行不退出
InstallKeybdHook ;安装键鼠钩子
InstallMouseHook ;安装鼠标钩子
keyhistory ;显示历史按键
<a name="x3102"></a>
# idea
<a name="iqSnP"></a>
## vimrc
set hlsearch “搜索高亮 set ignorecase “搜索忽略大小写 set smartcase “搜索如果同时大小写,自动开启大小写敏感 set scrolloff=3 “ 跳转预留行 set number “当前行号 set relativenumber “相对行号 set history=100 “历史记录 set clipboard=unnamed “系统粘贴板
let mapleader=’;’
noremap
“ 工具窗
noremap
“ 断点
noremap
“ 跳转
noremap
noremap
“ 重构
noremap
noremap
“ 快速搜索
noremap
“ 分屏
noremap
调整入参顺序 Ctrl + Shift + Alt + 左右箭头<br />调整方法顺序 Ctrl + Shift + 上下箭头
<a name="XShjw"></a>
## 模板
Editor > File and Code Templates > Includes > File Header
```java
/**
* TODO
*
* @author maojiajie
* @since ${DATE} ${TIME}
*/
Editor > Live Templates > + Template Group > + Live Template
/**
* $END$
*
* @author maojiajie
* @since $DATE$ $TIME$
*/
注意设置 Applicable In Java: declaration,并设置 Edit variables,Expression 分别为 date() 和 time()