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/sh | |
| # ============================================================================= | |
| # nixi - Nginx + PHP FPM multi-site installer | |
| # ----------------------------------------------------------------------------- | |
| # Author: KaisarCode | |
| # Website: https://kaisarcode.com | |
| # License: GNU General Public License v3.0 | |
| # https://www.gnu.org/licenses/gpl-3.0.txt | |
| # | |
| # This program is free software: you can redistribute it and/or modify |
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 | |
| # ============================================================================= | |
| # lara.sh — Laravel Project Manager (multi-project) | |
| # ----------------------------------------------------------------------------- | |
| # Author: KaisarCode | |
| # Email: kaisar@kaisarcode.com | |
| # Web: https://kaisarcode.com | |
| # Version: 2.0 | |
| # License: GNU General Public License v3.0 | |
| # ----------------------------------------------------------------------------- |
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 number | |
| set expandtab | |
| set tabstop=4 | |
| set shiftwidth=4 |
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-option -g prefix "C-b" | |
| bind-key "C-b" last-window | |
| set -g mouse on | |
| set-option -g allow-rename off | |
| # List of plugins | |
| set -g @plugin 'tmux-plugins/tpm' | |
| set -g @plugin 'tmux-plugins/tmux-sensible' | |
| set -g @plugin 'tmux-plugins/tmux-pain-control' | |
| set -g @plugin 'jimeh/tmux-themepack' |