sudo pacman -S texlive-basic texlive-latex texlive-latexrecommended texlive-latexextra texlive-fontsrecommended texlive-fontextra texlive-bibtexextra texlive-langjapanese biber
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
#!/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". |
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
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.
- Deno (latest stable version is recommended.)
- Vim/Neovim
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
TBD |
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
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' }); | |
} |
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
// Import 'start' function from denops_std | |
import {start} from "https://deno.land/x/denops_std@v0.3/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"); |
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-07/schema#", | |
"title": "dein.nvim", | |
"type": "object", | |
"description": "A schema for config of dein.nvim (https://github.com/Shougo/dein.vim/blob/master/doc/dein.txt#L963)", | |
"x-taplo-info": { | |
"authors": [ | |
"kkiyama117 (https://github.com/kkiyama117)" | |
], | |
"version": "0.1.0", |
NewerOlder