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
#! /usr/bin/env ruby | |
# frozen_string_literal: true | |
raise 'requires at least the new base and 1 branch to rebase' if ARGV.length < 2 | |
to_rebase = ARGV[0] | |
new_base = ARGV[1] | |
puts "to rebase: #{to_rebase.inspect}" | |
puts "new base: #{new_base.inspect}" |
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
# most basic commands and programs | |
sudo apt install \ | |
tilix \ | |
fish \ | |
npm \ | |
xclip \ | |
ripgrep \ | |
git \ | |
gimp \ | |
curl \ |
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
## BEFORE STOOTIE | |
.netrwhist | |
.*.sw[a-z] | |
.rvmrc | |
.rbenv-* | |
*~ | |
.DS_Store | |
coverage | |
.sass-cache | |
vendor/bundle |
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
[color] | |
ui = true | |
[user] | |
name = Michel Belleville | |
email = [email protected] | |
signingkey = E6597EC74934C00C | |
[branch] | |
autosetupmerge = always | |
autosetuprebase = always | |
[core] |
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
if empty(glob('~/.vim/autoload/plug.vim')) | |
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs | |
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC | |
endif | |
call plug#begin('~/.vim/plugged') | |
" " Add or remove your Bundles here: | |
" " - syntaxes |