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
## Personal global gitignore template collected from: | |
## https://github.com/github/gitignore/ | |
## | |
## - Current Languages and Frameworks ignore patterns | |
## - CVS | |
## - Linux | |
## - MacOS | |
## - Windows | |
## - JetBrains | |
## - Vim |
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
" >> load plugins | |
call plug#begin(stdpath('data') . 'vimplug') | |
" Telescope requirements... | |
Plug 'nvim-lua/plenary.nvim' | |
Plug 'nvim-lua/popup.nvim' | |
Plug 'nvim-telescope/telescope.nvim' | |
" Telescope | |
Plug 'nvim-telescope/telescope-fzy-native.nvim', {'do': 'make'} |
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 | |
# | |
# DESC: Setup personal github account | |
# | |
## Define github user email | |
email='[email protected]' | |
## Generate SSH key pairs |
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/bash | |
# | |
# DESC: Install Nerd fonts | |
# https://github.com/ryanoasis/nerd-fonts/ | |
# https://github.com/ryanoasis/nerd-fonts/releases/tag/v2.1.0 | |
# | |
## 1. Set prefered fonts version here | |
## base_url="https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/" |
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 | |
################ Description: ################### | |
# This script will disable all opt-out under | |
# Ubuntu 22.04 (Codename: Jammy Jellyfish). | |
# At first the telemetry domains will be resolved | |
# to the local host and second all telemetry services | |
# will be removed from the system. | |
# The following work has a system-wide effect not just |
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 | |
## ~/.shell/.aliasrc | |
## Included in ~/.bashrc | |
## Includes all other configs and paths | |
## TERM | |
# sudo update-alternatives --config x-terminal-emulator | |
## Define folder that holds the alias files |
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 python | |
# coding: utf-8 | |
# #### Step 1 - Imports | |
# In[4]: | |
import requests | |
import pandas as pd |
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
;;; package --- init.el | |
;; Author: Tom Geo | |
;; Keywords: emacs configuration tutorial | |
;; URL: https://github.com/ | |
;; This file is not part of GNU Emacs. | |
;;; Commentary: |
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 | |
## TITLE: Install and setup basic Artix - ZFS - OpenRc - rEFInd | |
## TODO: Make proper install scripts from this gist | |
## EFI SETUP: https://wiki.archlinux.org/index.php/EFI_system_partition | |
## ARTIX: https://wiki.artixlinux.org/Main/InstallationOnZFS | |
## REFIND: https://www.rodsbooks.com/refind/installing.html#linux | |
## INSTALL: https://wiki.artixlinux.org/Main/Installation | |
## ARCHZFS: https://www.youtube.com/watch?v=kPNcRSSaYQo |
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
{ | |
//*==========TELEMETRY==========*/ | |
"telemetry.enableCrashReporter": false, | |
"telemetry.enableTelemetry": false, | |
"workbench.enableExperiments": false, | |
//*==========EDITOR==========*/ | |
"editor.formatOnSave": true, | |
"[javascript]": { | |
"editor.formatOnSave": false |
NewerOlder