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
xkb_keymap { | |
xkb_keycodes { include "evdev+aliases(qwerty)" }; | |
xkb_types { include "complete" }; | |
xkb_compat { | |
include "complete+japan" | |
// Sticky keys | |
interpret Shift_L+Any { action = LatchMods(modifiers = modMapMods); }; | |
interpret Control_L+Any { action = LatchMods(modifiers = modMapMods); }; | |
interpret Alt_L+Any { action = LatchMods(modifiers = modMapMods); }; | |
interpret Super_L+Any { action = LatchMods(modifiers = modMapMods); }; |
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
タイトル | 著者 | 備考 (シリーズ名, 巻数など) | |
---|---|---|---|
空の境界 | 奈須きのこ | (上)(中)(下) | |
裏世界ピクニック | 宮澤伊織 | 1~7 | |
再生 角川ホラー文庫ベストセレクション | 綾辻行人 他 | ||
緋色の囁き | 綾辻行人 | ||
7人の名探偵 | 綾辻行人 他 | ||
虚談 | 京極夏彦 | ||
氷菓 | 米澤穂信 | ||
ボトルネック | 米澤穂信 | ||
満願 | 米澤穂信 |
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
if &compatible | |
set nocompatible | |
endif | |
set rtp^=~/.cache/nvim/dein/repos/github.com/prabirshrestha/vim-lsp | |
set rtp^=~/.cache/nvim/dein/repos/github.com/mattn/vim-lsp-settings | |
let g:lsp_log_file = expand('<sfile>:p:h') .. '/vim-lsp.log' | |
let g:lsp_settings_filetype_typescript = '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
function hoge() {} |
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
Sat 13 Aug 2022 08:44:05 PM JST:["lsp#register_server", "server registered", "deno"] | |
Sat 13 Aug 2022 08:44:05 PM JST:["lsp#register_server", "server already registered", "deno"] | |
Sat 13 Aug 2022 08:44:05 PM JST:["lsp#register_server", "server registered", "deno"] | |
Sat 13 Aug 2022 08:44:05 PM JST:["s:on_text_document_did_open()", 1, "typescript", "/home/hibiki/dotfiles/config/nvim", "file:///home/hibiki/dotfiles/config/nvim/%40%5Btest%5D.ts"] | |
Sat 13 Aug 2022 08:44:05 PM JST:["Starting server", "deno", ["/home/hibiki/.local/share/aquaproj-aqua/bin/deno", "lsp"]] | |
Sat 13 Aug 2022 08:44:05 PM JST:[{"response": {"data": {"__data__": "vim-lsp", "lsp_id": 3, "server_name": "deno"}, "message": "started lsp server successfully"}}] | |
Sat 13 Aug 2022 08:44:05 PM JST:["--->", 3, "deno", {"method": "initialize", "params": {"rootUri": "file:///home/hibiki/dotfiles", "initializationOptions": {"internalDebug": false, "unstable": true, "suggest": {"autoImports": true, "paths": true, "completeFunctionCalls": true, "names": true, "i |
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/sh | |
echo "AQUA_GLOBAL_CONFIG=$AQUA_GLOBAL_CONFIG" | |
echo "AQUA_CONFIG=$AQUA_CONFIG" | |
set -eux | |
export AQUA_LOG_LEVEL=debug | |
aqua --version | |
mkdir foo bar | |
cat << EOF | tee foo/aqua.yaml | |
# foo/aqua.yaml | |
registries: |
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
{"id":1,"hoge":true} | |
{"id":2,"hoge":false} | |
{"id":3,"hoge":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
恋愛裁判 | 40mP | |
---|---|---|
alive | 市瀬るぽ | |
on the rocks | OSTER PROJECT | |
リンちゃんなう! | オワタP | |
パラジクロロベンゼン | オワタP | |
フロムトーキョー | 夏代孝明 | |
エンドマークに希望と涙を添えて | cosMo@暴走P | |
雨とペトラ | バルーン | |
シャルル | バルーン | |
メーベル | バルーン |
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
function! gf#vimrc#find() abort | |
let path = expand('<cfile>') | |
let [line, col] = [0, 0] | |
if path =~# '\v:\d+%(:\d+)?:?$' | |
let line = matchstr(path, '\v\d+\ze%(:\d+)?:?$') | |
let col = matchstr(path, '\v:\d+:\zs\d+\ze:?$') | |
let path = matchstr(path, '\v.{-}\ze:\d+%(:\d+)?:?$') | |
endif | |
if path =~# '^file://' | |
let path = substitute(path, '^file://', '', '') |