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
| name: Playwright Tests | |
| on: | |
| push: | |
| branches: [ main, master ] | |
| pull_request: | |
| branches: [ main, master ] | |
| jobs: | |
| test: | |
| timeout-minutes: 60 | |
| runs-on: ubuntu-latest |
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
| {} |
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
| black = '#282828'; | |
| red = '#cc241d'; // red | |
| green = '#98971a'; // green | |
| yellow = '#d79921'; // yellow | |
| blue = '#458588'; // blue | |
| magenta = '#b16286'; // pink | |
| cyan = '#689d6a'; // cyan | |
| white = '#a89984'; // light gray | |
| lightBlack = '#928374'; // medium gray | |
| lightRed = '#fb4934'; // red |
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
Show hidden characters
| // installed Clojure packages: | |
| // | |
| // * BracketHighlighter | |
| // * lispindent | |
| // * SublimeREPL | |
| // * sublime-paredit | |
| { | |
| "word_separators": "/\\()\"',;!@$%^&|+=[]{}`~?", | |
| "paredit_enabled": true, |
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
| // installed Clojure packages: | |
| // | |
| // * BracketHighlighter | |
| // * lispindent | |
| // * SublimeREPL | |
| // * sublime-paredit | |
| { | |
| "word_separators": "/\\()\"',;!@$%^&|+=[]{}`~?", | |
| "paredit_enabled": true, |
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
| import sublime | |
| import sublime_plugin | |
| import sys | |
| import os | |
| import re | |
| import subprocess | |
| class WslSearchCommand(sublime_plugin.WindowCommand): | |
| def run(self, type="search"): | |
| view = self.window.active_view() |
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
| // ==UserScript== | |
| // @name Glitch Vim | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Add Vim to Glitch CodeMirror editor | |
| // @author Aurélien Bottazini | |
| // @match https://glitch.com/edit/ | |
| // @grant none | |
| // To use with https://www.tampermonkey.net/ | |
| // Add a user script and in settings set Run at: document start |
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
| # code %APPDATA%\alacritty\alacritty.yml | |
| font: | |
| normal: | |
| family: "PragmataPro" | |
| size: 14.0 | |
| colors: | |
| primary: | |
| background: '#ffffff' | |
| foreground: '#000000' |
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
| "defaults": | |
| { | |
| "colorScheme": "clair", | |
| "cursorColor": "#b22222", | |
| "cursorShape": "vintage", | |
| "fontFace": "PragmataPro Liga", | |
| "fontSize": 15, | |
| "startingDirectory": "//wsl$/Ubuntu/home/auray", | |
| "padding": "2,0,0,0", | |
| "scrollbarState": "hidden" |
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 default-terminal 'tmux-256color' | |
| # Enable 24 bit true colors | |
| set -ga terminal-overrides ',xterm-256color*:Tc' |
NewerOlder