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
#!/usr/bin/env bash | |
################################################ | |
# Created by: Silent-Mobius | |
# Purpose: automate system setup/backup on RPM based machines | |
# version: 0.0.7 | |
# date: 01.03.2024 | |
set -x | |
set -o errexit | |
set -o pipefail | |
################################################ |
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
#!/usr/bin/env bash | |
###############################################################3 | |
#Created by: Silent-Mobius AKA Alex M. Schapelle | |
#Purpose: automate vim ide setup | |
#Version: 0.1.9 | |
#Date: 23.02.2024 | |
set -x | |
set -o errexit | |
set -o pipefail | |
################################################################# |
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
set nocompatible | |
if has("syntax") | |
" enable syntax highlighting | |
syntax enable | |
" show line numbers | |
set number | |
" set tabs to have 4 spaces | |
set ts=4 | |
" indent when moving to the next line while writing code | |
set autoindent |