- レバーレスコントローラを作るときに参考にしたりしたリンクとか
- ファームウェア
- キーキャップ
- マイコン
- RP2040-Zero
- レイアウト
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
{ | |
"als": "https://raw.githubusercontent.com/AdaCore/ada_language_server/master/integration/vscode/ada/package.json", | |
"asm_lsp": "https://raw.githubusercontent.com/bergercookie/asm-lsp/master/asm-lsp_config_schema.json", | |
"ast_grep": "https://raw.githubusercontent.com/ast-grep/ast-grep/master/schemas/project.json", | |
"astro": "https://raw.githubusercontent.com/withastro/language-tools/main/packages/vscode/package.json", | |
"awkls": "https://raw.githubusercontent.com/Beaglefoot/awk-language-server/master/client/package.json", | |
"bashls": "https://raw.githubusercontent.com/bash-lsp/bash-language-server/master/vscode-client/package.json", | |
"beancount": "https://raw.githubusercontent.com/polarmutex/beancount-language-server/master/vscode/package.json", | |
"bicep": "https://raw.githubusercontent.com/Azure/bicep/master/src/vscode-bicep/package.json", | |
"bright_script": "https://raw.githubusercontent.com/rokucommunity/brighterscript/master/bsconfig.schema.json", |
- docker がインストールされていること
- https://github.com/darakuneko/gpk_fwmaker/archive/refs/heads/main.zip にアクセスして、 zip をダウンロード
- 任意のディレクトリに展開する
- 展開したディレクトリに移動して以下のコマンドを実行
docker compose build --no-cache
(自分の場合は、何回か失敗したため、成功するまで何回か試してみる)docker compose up -d
- https://download-directory.github.io/?url=https%3A%2F%2Fgithub.com%2Ftamago324%2Fqmk_firmware%2Ftree%2Ftamago324_v2%2Fkeyboards%2Ftamago324%2Fgku34 にアクセスして、gku34 の vial 用のソースコードをダウンロードする
- ダウンロードしたファイルを展開して
C:\Users\tamago324\GPKFW\gku34
に配置
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
// ==UserScript== | |
// @name AtCoder Text Cleanup for Kotlin | |
// @namespace http://atcoder.jp/ | |
// @version 0.4 | |
// @description Remove lines starting with @file or package and blank lines when pasting into text boxes on AtCoder contest pages. | |
// @author tamgo324 | |
// @include https://atcoder.jp/contests/*/tasks/* | |
// @include https://atcoder.jp/contests/*/submit | |
// @grant none | |
// ==/UserScript== |
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
nnoremap <Plug>MyplusejumpTab <C-i> | |
function! s:jump(cmd) abort | |
let l:bufname = bufname('%') | |
if a:cmd ==# 'next' | |
" exec "normal! \<Tab>" | |
exec "normal <Plug>MyplusejumpTab" | |
else | |
exec "normal! \<C-o>" | |
endif |
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
-- @file ~/.config/nvim/lua/xido/vertical_mode.lua | |
local main = require'ido.main' | |
local vertical = {} | |
--- バッファの設定を行う? | |
vertical.init = function() | |
-- 高さは 10 | |
vim.cmd 'botright 10new' |
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
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"description": "Setting of https://github.com/vscode-langservers/vscode-html-languageserver-bin", | |
"properties": { | |
"html.experimental.custom.tags": { | |
"type": "array", | |
"description": "A list of JSON file paths that define custom tags." | |
}, | |
"html.experimental.custom.attributes": { | |
"type": "array", |
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
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"description": "Setting of https://github.com/rust-analyzer/rust-analyzer", | |
"properties": { | |
"rust-analyzer.cargoRunner": { | |
"type": [ | |
"null", | |
"string" | |
], | |
"default": null, |
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
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"description": "Setting of vscode-json-languageserver. https://github.com/vscode-langservers/vscode-json-languageserver", | |
"properties": { | |
"json.enable": { | |
"type": "boolean", | |
"default": true, | |
"description": "Enable json server" | |
}, | |
"json.trace.server": { |
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
{ | |
"$schema": "", | |
"description": "Setting of rust-analyzer", | |
"properties": { | |
"rust-client.engine": { | |
"type": "string", | |
"enum": [ | |
"rls", | |
"rust-analyzer" | |
], |
NewerOlder