Skip to content

Instantly share code, notes, and snippets.

@zero-pytagoras
zero-pytagoras / rpm_restore.sh
Last active March 2, 2024 19:42
automate system setup/backup on RPM based machines
#!/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
################################################
@zero-pytagoras
zero-pytagoras / vim_ide_setup.sh
Last active March 2, 2024 19:51
vim_ide_setup.sh
#!/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
#################################################################
@zero-pytagoras
zero-pytagoras / vimrc
Last active March 2, 2024 19:48
vimrc
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