Export:
- Copy from
${user}/.atom:
- config.cson
- keymap.cson
- snippets.cson
- styles.less
- Save installed packages list
apm list --installed --bare > packages.list
| # Edit your fish prompt with `funced fish_prompt` and | |
| # add the following to a desired place in the function. | |
| # Save the prompt after editing with `funcsave fish_prompt`. | |
| # Set a variable for workspace color. | |
| set -l tfworkspace_color (set_color green) | |
| # Append the workspace name at the current prompt position if | |
| # the directory contains a .terraform subdirectory | |
| if test -d .terraform |
| function applycss(css){ | |
| var head = document.getElementsByTagName('head')[0]; | |
| var s = document.createElement('style'); | |
| s.setAttribute('type', 'text/css'); | |
| s.appendChild(document.createTextNode(css)); | |
| head.appendChild(s); | |
| } | |
| applycss(` | |
| /*Theme made by RaitaroH @https://gitlab.com/RaitaroH/WhatsApp-DeepDark*/ | |
| /*GNU General Public License v3.0*/ |
Export:
${user}/.atom:apm list --installed --bare > packages.listJon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
I just had to set up Jenkins to use GitHub. My notes (to myself, mostly):
For setting up Jenkins to build GitHub projects. This assumes some ability to manage Jenkins, use the command line, set up a utility LDAP account, etc. Please share or improve this Gist as needed.