Skip to content

Instantly share code, notes, and snippets.

View ymtszw's full-sized avatar
🌏
We are beasts after all

Yu Matsuzawa ymtszw

🌏
We are beasts after all
View GitHub Profile
@ymtszw
ymtszw / stylus-home.json
Last active December 21, 2023 03:40
My Stylus Repository
[
{
"settings": {
"openEditInWindow": true,
"openEditInWindow.popup": false,
"windowPosition": {},
"show-badge": true,
"disableAll": false,
"exposeIframes": false,
"newStyleAsUsercss": false,
@ymtszw
ymtszw / .travis.yml.sample
Last active November 15, 2018 09:23
CI speedup workaround scripts for Elm 0.18 (see https://github.com/elm-lang/elm-compiler/issues/1473 for details)
sudo: false
os:
- linux
language: node_js
node_js:
- "6"
- "8"
cache:
directories:
- "sysconfcpus"
@ymtszw
ymtszw / .ctags
Last active November 2, 2017 10:52
Elixir(with skirino/croma) and Scala ctags pattern file. https://github.com/mmorearty/elixir-ctags http://ronor.blog81.fc2.com/blog-entry-66.html
--langdef=Elixir
--langmap=Elixir:.ex.exs
--regex-Elixir=/^[ \t]*def(p?)[ \t]+([a-z_][a-zA-Z0-9_?!]*)/\2/f,function,functions/
--regex-Elixir=/^[ \t]*defpt[ \t]+([a-z_][a-zA-Z0-9_?!]*)/\1/f,function,functions/
--regex-Elixir=/^[ \t]*defun(p?)[ \t]+([a-z_][a-zA-Z0-9_?!]*)/\2/f,function,functions/
--regex-Elixir=/^[ \t]*defunpt[ \t]+([a-z_][a-zA-Z0-9_?!]*)/\1/f,function,functions/
--regex-Elixir=/^[ \t]*defcallback[ \t]+([a-z_][a-zA-Z0-9_?!]*)/\1/c,callbacks,callbacks (defcallback ...)/
--regex-Elixir=/^[ \t]*defdelegate[ \t]+([a-z_][a-zA-Z0-9_?!]*)/\1/d,delegates,delegates (defdelegate ...)/
--regex-Elixir=/^[ \t]*defexception[ \t]+([A-Z][a-zA-Z0-9_]*\.)*([A-Z][a-zA-Z0-9_?!]*)/\2/e,exceptions,exceptions (defexception ...)/
--regex-Elixir=/^[ \t]*defimpl[ \t]+([A-Z][a-zA-Z0-9_]*\.)*([A-Z][a-zA-Z0-9_?!]*)/\2/i,implementations,implementations (defimpl ...)/