Add yarnrc

This commit is contained in:
Observer of Time 2019-11-10 18:43:16 +02:00
parent 4b31759346
commit 7126870a2e
Signed by: chronobserver
GPG Key ID: 8A2DEA1DBAEBCA9E
10 changed files with 42 additions and 15 deletions

View File

@ -53,7 +53,7 @@ export GEM_PATH="$GEM_HOME:/usr/lib/ruby/gems/2.6.0"
# Set the paths used by perl5 {{{ # Set the paths used by perl5 {{{
export PERL5LIB="$HOME/.local/perl/lib/perl5" export PERL5LIB="$HOME/.local/perl/lib/perl5"
export PERL_CPANM_OPT="-l ~/.local/perl" export PERL_CPANM_OPT="-l $HOME/.local/perl"
export PERL_CPANM_HOME="$HOME/.local/perl/.cpanm" export PERL_CPANM_HOME="$HOME/.local/perl/.cpanm"
# }}} # }}}
@ -80,7 +80,6 @@ export PATH="$HOME/.local/bin:\
$HOME/.local/perl/bin:\ $HOME/.local/perl/bin:\
$GOPATH/bin:\ $GOPATH/bin:\
$GEM_HOME/bin:\ $GEM_HOME/bin:\
$HOME/.yarn/bin:\
$ANDROID_HOME/tools:\ $ANDROID_HOME/tools:\
$ANDROID_HOME/platform-tools:" $ANDROID_HOME/platform-tools:"
# }}} # }}}

View File

@ -88,6 +88,7 @@ STICKY_OTHER_WRITABLE 48;5;10;38;5;16 # dir that is sticky and other-writable
.lzh 38;5;247 .lzh 38;5;247
.lzma 38;5;247 .lzma 38;5;247
.ora 38;5;247 .ora 38;5;247
.piz 38;5;247
.rar 38;5;247 .rar 38;5;247
.rpm 38;5;247 .rpm 38;5;247
.rz 38;5;247 .rz 38;5;247

View File

@ -5,8 +5,8 @@ u cycle video-unscaled
v cycle sub-visibility v cycle sub-visibility
x cycle sub x cycle sub
X cycle sub down X cycle sub down
, cycle video z cycle video
. cycle video down Z cycle video down
a cycle audio a cycle audio
A cycle audio down A cycle audio down
m cycle mute m cycle mute

View File

@ -12,6 +12,16 @@ input-default-bindings=no
# }}} # }}}
# Track selection {{{
# Specify a priority list of audio languages to use.
alang=eng,jpn
# Specify a priority list of subtitle languages to use.
slang=eng,ell
# }}}
# Miscellaneous {{{ # Miscellaneous {{{
# How the player synchronizes audio and video. # How the player synchronizes audio and video.

View File

@ -1,8 +1,9 @@
{ {
"license": "MIT-0", "license": "MIT-0",
"private": true,
"dependencies": { "dependencies": {
"american-british-english-translator": "^0.1.2", "american-british-english-translator": "^0.1.2",
"eslint": "^6.5.1", "eslint": "^6.6.0",
"grunt-cli": "^1.3.2", "grunt-cli": "^1.3.2",
"gulp-cli": "^2.2.0", "gulp-cli": "^2.2.0",
"htmlhint": "^0.11.0", "htmlhint": "^0.11.0",
@ -10,7 +11,7 @@
"pug-cli": "^1.0.0-alpha6", "pug-cli": "^1.0.0-alpha6",
"pug-lint": "^2.5.0", "pug-lint": "^2.5.0",
"stylelint": "^11.1.1", "stylelint": "^11.1.1",
"stylelint-scss": "^3.9.3", "stylelint-scss": "^3.12.1",
"svgo": "^1.2.2" "svgo": "^1.3.0"
} }
} }

5
.gitattributes vendored
View File

@ -43,13 +43,16 @@
.config/pypoetry/config.toml linguist-language=TOML .config/pypoetry/config.toml linguist-language=TOML
.config/vifm/vifmrc linguist-language=Vim .config/vifm/vifmrc linguist-language=Vim-script
.config/fontconfig/fonts.conf linguist-language=XML .config/fontconfig/fonts.conf linguist-language=XML
.clang-format linguist-language=YAML .clang-format linguist-language=YAML
.clang-tidy linguist-language=YAML .clang-tidy linguist-language=YAML
# not actually YAML yet
# .yarnrc linguist-language=YAML
# skews the stats due to its size # skews the stats due to its size
.XCompose linguist-language=XCompose linguist-detectable=false .XCompose linguist-language=XCompose linguist-detectable=false

2
.gitignore vendored
View File

@ -47,6 +47,4 @@ Videos/
# Automatically appended # Automatically appended
node_modules/ node_modules/
.yarn/
.yarnrc
.*history .*history

View File

@ -16,7 +16,7 @@
"requireLowerCaseTags": true, "requireLowerCaseTags": true,
"requireSpaceAfterCodeOperator": true, "requireSpaceAfterCodeOperator": true,
"requireSpecificAttributes": [ "requireSpecificAttributes": [
{"object": ["src", "type"]}, {"object": ["data", "type"]},
{"img": ["src", "alt"]}, {"img": ["src", "alt"]},
{"a": ["href"]} {"a": ["href"]}
], ],

14
.yarnrc Normal file
View File

@ -0,0 +1,14 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
disable-self-update-check true
email chronobserver@disroot.org
init-author-email chronobserver@disroot.org
init-author-name ObserverOfTime
init-author-url "https://observeroftime.github.io"
init-license MIT
init-version "0.1.0"
user-agent "yarn/1.19.1 node/v12.13.0 linux x64"
username ObserverOfTime
version-git-sign true

View File

@ -17,9 +17,9 @@ Managed via [dotfiles.sh](https://github.com/eli-schwartz/dotfiles.sh)
## [Bash](https://www.gnu.org/software/bash/) ## [Bash](https://www.gnu.org/software/bash/)
* [.bash\_aliases](.bash_aliases): contains various aliases * [.bash_aliases](.bash_aliases): contains various aliases
* [.bash\_funcs](.bash_funcs): contains various functions * [.bash_funcs](.bash_funcs): contains various functions
* [.bash\_profile](.bash_profile): login shell configuration file * [.bash_profile](.bash_profile): login shell configuration file
* [.bashrc](.bashrc): interactive shell configuration file * [.bashrc](.bashrc): interactive shell configuration file
## [Ccache](https://github.com/ccache/ccache) ## [Ccache](https://github.com/ccache/ccache)
@ -88,7 +88,7 @@ Managed via [dotfiles.sh](https://github.com/eli-schwartz/dotfiles.sh)
* [.config/pip/pip.conf](.config/pip/pip.conf): configuration file * [.config/pip/pip.conf](.config/pip/pip.conf): configuration file
## [Poetry](https://github.com/sdispater/poetry) ## [Poetry](https://poetry.eustace.io/)
* [.config/pypoetry/config.toml](.config/pypoetry/config.toml): configuration file * [.config/pypoetry/config.toml](.config/pypoetry/config.toml): configuration file
@ -119,6 +119,7 @@ Managed via [dotfiles.sh](https://github.com/eli-schwartz/dotfiles.sh)
## [Yarn](https://yarnpkg.com/lang/en/) ## [Yarn](https://yarnpkg.com/lang/en/)
* [.config/yarn/global/package.json](.config/yarn/global/package.json): package list * [.config/yarn/global/package.json](.config/yarn/global/package.json): package list
* [.yarnrc](.yarnrc): configuration file
## [Yay](https://github.com/Jguer/yay) ## [Yay](https://github.com/Jguer/yay)