This file contains hidden or 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
| :root { | |
| --command-mode-width: 15px; | |
| --c-bg: #29353B; | |
| --c-bg-link: var(--c-bg); | |
| --c-fg-link: #fff; | |
| --c-fg: #fff; | |
| --c-muted: #8f8f8f; | |
| --c-bg-active: #2DCED0; | |
| --c-fg-active: #00fcff; | |
| --s-link-width: 22px; |
This file contains hidden or 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
| Section "InputClass" | |
| Identifier "keyboard defaults" | |
| MatchIsKeyboard "on" | |
| Option "XKbOptions" "caps:escape" | |
| EndSection |
This file contains hidden or 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
| const fs = require('fs'); | |
| const path = require('path'); | |
| const getLines = file => file.split(/(\r\n|\r|\n)/); | |
| const filterComments = lines => lines.filter(line => line[0] === '#'); | |
| const filterImports = lines => lines.filter(line => line.slice(1).split(' ')[0] === 'import'); | |
| const getImportPathes = lines => lines.map(line => line.slice(1).split(' ')[1]); | |
| const getValidPathes = pathes => pathes.map(_path => _path && _path.match(/^["'](.+)["']/)[1]); | |
| const resolveImportPathes = (importPathes, srcPath) => | |
| importPathes.map((importPath) => { |
This file contains hidden or 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
| { | |
| "remove-empty-rulesets": false, | |
| "always-semicolon": true, | |
| "color-case": "lower", | |
| "block-indent": " ", | |
| "color-shorthand": true, | |
| "element-case": "lower", | |
| "eof-newline": true, | |
| "leading-zero": false, | |
| "quotes": "single", |
NewerOlder