This file contains 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/sh | |
# | |
# This script configures Oh My ZSH and can be directly executed after it has been installed. | |
# Download personal theme | |
wget -q -O .oh-my-zsh/themes/mnml.zsh-theme https://raw.githubusercontent.com/thijskok/zsh-theme/master/mnml.zsh-theme | |
# Update configuration to use theme (add default_user as well) | |
sed -i -e '/ZSH_THEME=/s/=.*/="mnml"\n\nDEFAULT_USER=`whoami`/' ~/.zshrc |
This file contains 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/sh | |
# | |
# This script installs ZSH and Oh My ZSH. | |
# Update and install ZSH | |
sudo apt-get update | |
sudo apt-get install -y zsh | |
# Install Oh My Zsh | |
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" |
This file contains 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
version: 2 | |
jobs: | |
build: | |
working_directory: ~/user/repo | |
environment: | |
BASH_ENV: ~/.bashrc | |
docker: |
This file contains 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
; Ender 3 Custom Start G-code | |
M280 P0 S140 | |
G4 P2000 ; delay for BLTouch | |
M280 P0 S160 ; BLTouch alarm release | |
G4 P100 ; delay for BLTouch | |
M140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature | |
M190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature | |
M104 S160; start warming extruder to 160 | |
G28 ; Home all axes | |
G29 ; Auto bed-level (BLTouch) |
This file contains 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
# vim:ft=zsh ts=2 sw=2 sts=2 | |
# | |
# MiNiMaL | |
# A minimal prompt based on agnoster's Theme (https://gist.github.com/3712874) | |
# | |
# # Introduction | |
# | |
# MNML tries to minimize the information required shown in your prompt. | |
# | |
# - In your homedir, only a '~' is displayed. |
This file contains 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
// Settings in here override those in "Default/Preferences.sublime-settings", | |
// and are overridden in turn by syntax-specific settings. | |
{ | |
"added_words": | |
[ | |
"Laravel" | |
], | |
"caret_style": "phase", | |
"color_scheme": "Packages/Color Scheme - Default/Mariana.sublime-color-scheme", | |
"create_window_at_startup": false, |
This file contains 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
{ | |
"[blade]": { | |
"editor.autoClosingBrackets": "always", | |
"editor.defaultFormatter": "shufo.vscode-blade-formatter" | |
// "editor.formatOnSave": true | |
}, | |
"[php]": { | |
"editor.defaultFormatter": "junstyle.php-cs-fixer" | |
}, | |
"blade.format.enable": true, |