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
{ | |
"css.validate": false, // handled by stylelint | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"eslint.lintTask.enable": true, // contributes a lint task to lint a whole workspace folder | |
"eslint.options": { "configFile": "./.dev.eslintrc.js" }, | |
"eslint.workingDirectories": ["./web", "./e2eTest/playwright"], | |
"[javascript]": { "editor.defaultFormatter": "dbaeumer.vscode-eslint" }, | |
"[typescript]": { "editor.defaultFormatter": "dbaeumer.vscode-eslint" } |
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
### Keybase proof | |
I hereby claim: | |
* I am flapjackfritz on github. | |
* I am flapjack (https://keybase.io/flapjack) on keybase. | |
* I have a public key ASAMgu82qJdsYdneoCfBN_nxFi08x4xT-3jKftD2E6-DPwo | |
To claim this, I am signing this object: |
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
set -g prefix C-a | |
unbind C-b | |
bind C-a send-prefix | |
set-window-option -g utf8 on # utf8 support | |
bind R source-file ~/.tmux.conf \; display-message " Config reloaded.." | |
set -g default-terminal "screen-256color" | |
set-option -g default-shell /bin/bash |