I hereby claim:
- I am kkiyama117 on github.
- I am kkiyama117 (https://keybase.io/kkiyama117) on keybase.
- I have a public key ASCYeJTzdKOXsDJIOmw3w3p85kf-OWgu9FBSwlC6H7T0ywo
To claim this, I am signing this object:
| { | |
| "mcpServers": { | |
| "arxiv-mcp-server": { | |
| "type": "stdio", | |
| "command": "uvx", | |
| "args": [ | |
| "arxiv-mcp-server" | |
| ], | |
| "env": {} | |
| }, |
| { | |
| "name": "Noi Mode", | |
| "version": "0.1.14", | |
| "sync": "https://github.com/lencx/noi/blob/main/configs/noi.mode.json", | |
| "modes": [ | |
| { | |
| "id": "noi@ai", | |
| "parent": 0, | |
| "dir": true, | |
| "text": "AI" |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/csh -f | |
| # | |
| # last update = 17 Aug 2016 | |
| # | |
| # This is a C-shell script to execute GAMESS, by typing | |
| # rungms JOB VERNO NCPUS PPN LOGN >& JOB.log & | |
| # JOB is the name of the 'JOB.inp' file to be executed, | |
| # VERNO is the number of the executable you chose at 'lked' time, | |
| # NCPUS is the number of processors to be used, or the name of | |
| # a host list file (see an example below, starting from "node1 4". |
| mkdir -p ~/.local/share | |
| git clone https://github.com/kkiyama117/dotfiles.git ~/.local/share/chezmoi | |
| cd ~/.local/share/chezmoi/.ansible | |
| ansible-playbook setting.yml -K |
If you need this section written in Japanese, read article written by @lambdalisue
You need to install these softwares on your machine to run denops plugins.
| TBD |
| import { serve } from 'https://deno.land/std/http/server.ts'; | |
| const server = serve({ port: 8000 }); | |
| for await (const req of server) { | |
| req.respond({ body: 'Hello Deno' }); | |
| } |
| // Import 'start' function from denops_std | |
| import {start} from "https://deno.land/x/[email protected]/mod.ts"; | |
| // Call 'start' with async callback. The callback get 'vim' instance. | |
| start(async (vim) => { | |
| vim.register({ | |
| // async echo(_: unknown): Promise<unknown> { | |
| async echo(_: unknown): Promise<void> { | |
| // const test = await vim.g.get("denops_helloworld") as [boolean]; | |
| const test = await vim.g.get("denops_helloworld"); |