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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP --> | |
| <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'"> | |
| <title>Hello World!</title> | |
| </head> | |
| <body> | |
| <h1>Hello World!</h1> |
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
| module.exports = { | |
| plugins: ["hyperterm-visor", "hyper-pane"], | |
| config: { | |
| visor: { | |
| hotkey: 'shift+²', | |
| position: 'bottom' | |
| } | |
| }, | |
| keymaps: { | |
| 'tab:new': 'ctrl+t', |
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
| #!/bin/bash | |
| # Usage | |
| # kfwd.sh [label=labelValue] [port] | |
| echo $1:$2 | |
| labels=${1} | |
| port=${2} | |
| pid="" | |
| pod= |
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
| unbind C-b | |
| set -g prefix C-a | |
| bind C-a send-prefix | |
| set -g terminal-overrides 'xterm*:smcup@:rmcup@' | |
| # line history buffer limit | |
| set-option -g history-limit 100000 | |
| # configuration reload |