Commit 20c2b0a

mo khan <mo@mokhan.ca>
2021-09-23 19:06:42
chore: remove anything that might break codespaces
1 parent 43b17da
etc/apt/sources.list
@@ -1,2 +0,0 @@
-deb https://deb.debian.org/debian/ unstable main contrib non-free
-deb-src https://deb.debian.org/debian/ unstable main contrib non-free
script/codespaces-post-start
@@ -4,26 +4,9 @@ set -e
 
 cd "$(dirname "$0")/.."
 
-function debian_sid_sources()
-{
-  mv /etc/apt/sources.list "/etc/apt/sources.list.$(date -I).bak"
-  cp -f ./etc/apt/sources.list /etc/apt/sources.list
-}
-
-function install_pkgs()
-{
-  # debian_sid_sources
-
-  apt-get update -y
-
-  # shellcheck disable=SC2046
-  apt-get install -y --no-install-recommends $(tr '\n' ' ' < ./apt.list)
-}
-
 ./script/setup
 
-if [[ -f "/usr/bin/fdfind" ]]; then
-  ln -s /usr/bin/fdfind /usr/bin/fd
-fi
+apt-get update -y
 
-install_pkgs
+# shellcheck disable=SC2046
+apt-get install -y --no-install-recommends $(tr '\n' ' ' < ./apt.list)
script/setup
@@ -50,6 +50,3 @@ dotfile "ssh/config"
 dotfile "tmux.conf"
 dotfile "vimrc"
 dotfile "wgetrc"
-
-./vim/pack/plugins/start/fzf/install --all
-cp -f ./vim/pack/plugins/start/fzf/bin/fzf "$HOME/.local/bin/"
gitconfig
@@ -2,18 +2,15 @@
   aa = add --all
   amend = commit --amend
   b = branch
-  churn = log --all -M -C --name-only --format='format:' "$@" | sort | grep -v '^$' | uniq -c | sort -rn
   ci = commit
   co = checkout
   cop = commit -m 'style: fix linter errors'
-  ct = commit -m
   dc = diff --cached
   di = diff -w
   lga = log --graph --all --decorate --oneline
   lg = log -p
   lola = log --graph --decorate --oneline --all
   lol = log --graph --decorate --oneline
-  p = push -u origin head
   shame = blame -w -M
   st = status -s
 [color]
profile
@@ -8,7 +8,7 @@ export HISTFILE=$HOME/.bash_history
 export HISTSIZE=100000
 export HISTTIMEFORMAT="%Y-%m-%d %T "
 export INPUTRC="$HOME/.inputrc"
-export LC_ALL=C
+export LC_ALL=en_US.UTF-8
 export LESSHISTFILE='/dev/null'
 export LSCOLORS='gxfxcxdxbxegedabagacad'
 export MANPAGER=/usr/bin/less