Skip to content

Instantly share code, notes, and snippets.

View tamago324's full-sized avatar
⌨️
Enjoy Keeb!

tamago324 tamago324

⌨️
Enjoy Keeb!
  • japan
View GitHub Profile
{
"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",

gku34 で vial のファームウェアを作成できるかどうか確認

@tamago324
tamago324 / AtCoder_Text_Cleanup_for_Kotlin.user.js
Last active June 20, 2023 23:58
AtCoder Text Cleanup for Kotlin
// ==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==
@tamago324
tamago324 / pluse_jump.vim
Last active May 6, 2022 23:38
exec "normal! \<Tab>" がうまく実行できなかったため、その対応
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
-- @file ~/.config/nvim/lua/xido/vertical_mode.lua
local main = require'ido.main'
local vertical = {}
--- バッファの設定を行う?
vertical.init = function()
-- 高さは 10
vim.cmd 'botright 10new'
{
"$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",
{
"$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,
{
"$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": {
{
"$schema": "",
"description": "Setting of rust-analyzer",
"properties": {
"rust-client.engine": {
"type": "string",
"enum": [
"rls",
"rust-analyzer"
],