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
Import-Module posh-git | |
Import-Module oh-my-posh | |
Set-PoshPrompt -Theme jandedobbeleer | |
Import-Module -Name Terminal-Icons | |
function mcd($a) { | |
md $a && cd $a | |
} | |
function rmrf($a) { |
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
execute 'source' fnamemodify(expand('<sfile>'), ':h').'/main.vim' | |
" Install Vim-Plug | |
" iwr -useb https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim |` | |
" ni "$(@($env:XDG_DATA_HOME, $env:LOCALAPPDATA)[$null -eq $env:XDG_DATA_HOME])/nvim-data/site/autoload/plug.vim" -Force | |
" Install Vim-Plug in ~\AppData\Local\nvim\autoload and NOT inside nvim-data | |
set guifont=FiraCode\ Nerd\ Font:h12 | |
set number | |
set relativenumber | |
" set shellslash | |
" Plug plugin install setup |
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
[ | |
{ | |
"name": "3024 Day", | |
"black": "#090300", | |
"red": "#db2d20", | |
"green": "#01a252", | |
"yellow": "#fded02", | |
"blue": "#01a0e4", | |
"purple": "#a16a94", | |
"cyan": "#b5e4f4", |
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
cargo install topgrade sd hyperfine du-dust dutree ytop bottom procs skim bat exa fd-find starship ripgrep tokei tealdeer bandwhich grex rmesg zoxide git-delta tp-note nu sd | |
######################################## | |
# # | |
# # | |
# ripgrep on Windows choco/scoop # | |
# # | |
# # | |
######################################## | |
# topgrade: Updates everything in the system. It is platform-independent. | |
# sd : `sed` command alternative and it uses normal regex just like any other programming language |
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
# NOTE: EACH SOLUTION IS SELF CONTAINED. | |
# This file can't be run as a script because the trailing semi-colon is left off of each solution. | |
# Divisors | |
{(1…$_).grep($_%%*).put}for 1…Ⅽ | |
# Emirp Numbers | |
$_≠.flip&&($_,.flip)».is-prime.all&&.say for ^Ⅿ | |
# Evil Numbers |
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
execute 'source' fnamemodify(expand('<sfile>'), ':h').'/main.vim' | |
" Install Vim-Plug | |
" iwr -useb https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim |` | |
" ni "$(@($env:XDG_DATA_HOME, $env:LOCALAPPDATA)[$null -eq $env:XDG_DATA_HOME])/nvim-data/site/autoload/plug.vim" -Force | |
" Install Vim-Plug in ~\AppData\Local\nvim\autoload and NOT inside nvim-data | |
set guifont=FiraCode\ Nerd\ Font:h12 | |
set number | |
set relativenumber | |
" set shellslash | |
" Plug plugin install setup |
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 | |
iatest=$(expr index "$-" i) | |
####################################################### | |
# SOURCED ALIAS'S AND SCRIPTS BY zachbrowne.me | |
####################################################### | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc |
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
" Install Vim-Plug | |
" iwr -useb https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim |` | |
" ni "$(@($env:XDG_DATA_HOME, $env:LOCALAPPDATA)[$null -eq $env:XDG_DATA_HOME])/nvim-data/site/autoload/plug.vim" -Force | |
" Install Vim-Plug in ~\AppData\Local\nvim\autoload and NOT inside nvim-data | |
set guifont=FiraCode\ Nerd\ Font:h16 | |
set number | |
set relativenumber | |
" set shellslash | |
" Plug plugin install setup |
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
" %userprofile%/AppData/Local/nvim/init.vim | |
set guifont=FiraCode\ Nerd\ Font:h16 | |
set number | |
set relativenumber | |
filetype off | |
set shellslash | |
set rtp+=C:\Users\quant\vimfiles\bundle\Vundle.vim | |
call vundle#begin('~/vimfiles/bundle') | |
" let Vundle manage Vundle, required | |
Plugin 'VundleVim/Vundle.vim' |