This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"profiles": [ | |
{ | |
"complex_modifications": { | |
"rules": [ | |
{ | |
"description": "⌃-J to switch between english and 倉頡", | |
"manipulators": [ | |
{ | |
"conditions": [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"" Source your .vimrc | |
"source ~/.vimrc | |
"" -- Suggested options -- | |
" Show a few lines of context around the cursor. Note that this makes the | |
" text scroll if you mouse-click near the start or end of the window. | |
" set scrolloff=5 | |
" Do incremental searching. | |
" set incsearch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Windows: %USERPROFILE%\.omnisharp\omnisharp.json | |
{ | |
"roslynExtensionsOptions": { | |
"inlayHintsOptions": { | |
"enableForParameters": true, | |
"forLiteralParameters": true, | |
"forIndexerParameters": true, | |
"forObjectCreationParameters": true, | |
"forOtherParameters": true, | |
"suppressForParametersThatDifferOnlyBySuffix": false, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your key bindings in this file to override the defaults | |
[ | |
{ | |
"key": "enter", | |
"command": "acceptSelectedSuggestion", // to insert | |
"when": "suggestWidgetVisible && textInputFocus" | |
}, | |
{ | |
"key": "tab", | |
"command": "acceptAlternativeSelectedSuggestion", // to replace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; GroupAdd, Vim_Only, ahk_exe devenv.exe ; Visual Studio 2019 | |
; GroupAdd, Vim_Only, ahk_exe Code.exe ; Visual Studio Code | |
; GroupAdd, Vim_Only, ahk_exe msedge.exe ; Edge | |
; Left Alt + h / j / k / l 為方向鍵 | |
; #IfWinActive ahk_group Vim_Only | |
; <!h::Send {Left} | |
; <!j::Send {Down} | |
; <!k::Send {Up} | |
; <!l::Send {Right} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"Vim Plugin Manager | |
call plug#begin() | |
call plug#end() | |
" For Windows Terminal you can use something like this: | |
" Note: This should be set after `set termguicolors` or `set t_Co=256`. | |
" if &term =~ 'xterm' || &term == 'win32' | |
" " Use DECSCUSR escape sequences | |
" let &t_SI = "\e[5 q" " blink bar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" [ReSharper Documentation](https://www.jetbrains.com/help/resharper/) | |
" 避免 key mapping 覆蓋 `"` 與 `/` 暫存器, 分別採用 `z` 與 `s` 暫存器替代 | |
" Not support InsertLeave autocmd 自動切換回英文輸入法 | |
"autocmd InsertLeave * !%USERPROFILE%\\.vscode\\extensions\\im-select.exe 1033 | |
inoremap <Esc> <Esc>:!%USERPROFILE%\\.vscode\\extensions\\im-select.exe 1033<CR> |