points/.README.md

5.8 KiB

Bare Git Repository

Starting from scratch

git init --bare $HOME/.dotfiles
alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME'
dotfiles config --local status.showUntrackedFiles no

Install onto a new system

The checkout command is expected to fail with a message. This is because your $HOME folder might already have some stock configuration files which would be overwritten by Git. The “BKDIR” part is a rough shortcut to move all the offending files automatically to a backup folder:

git clone --bare <git-repo-url> $HOME/.dotfiles

alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME'

dotfiles config --local status.showUntrackedFiles no

BKDIR=".dotfiles-backup/";
dotfiles checkout 2>&1 | egrep "\s+" | awk {'print $1'} |
  xargs -I{} sh -c "mkdir -p \$(dirname ${BKDIR}{}); mv -iv {} ${BKDIR}{}";

dotfiles checkout

Install into /etc/skel

sudo mkdir -p /etc/skel/.dotfiles
sudo chown $(whoami) /etc/skel

git clone --bare $(dotfiles remote -v | head -1 | cut -f2 | cut -f1 -d' ') /etc/skel/.dotfiles

alias skelfiles='/usr/bin/git --git-dir=/etc/skel/.dotfiles --work-tree=/etc/skel'
skelfiles config --local status.showUntrackedFiles no
skelfiles checkout

Useful Commands

  • List all tracked files (from CWD):
    dotfiles ls-tree --name-only -rz main | xargs -0 $(whence lsd) -lU

Other Tools

lazygit --git-dir=$HOME/.dotfiles --work-tree=$HOME

Install remotes as subtree

  • https://www.atlassian.com/git/tutorials/git-subtree
  • Create an alias for remote repository
    • dotfiles remote add <remote-name> <URL>
  • Import remote as a single commit (squashed)
    • `dotfiles subtree add --prefix --squash
    • Note 1: Must be called from $HOME
    • Note 2: Do not start with $HOME or ~

Install recent versions of applications

Generic Tips

Github Patches

From stackoverflow.

wget https://github.com/jesseduffield/lazygit/pull/2604.patch
git apply --stat --apply 2604.patch

Fonts

in /opt/fonts

/etc/fonts/conf.d/00-opt.conf:

<?xml version="1.0"?><!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<dir>/opt/fonts</dir>
</fontconfig>

kitty

sudo apt-get install kitty-terminfo

(kitty --version && curl https://sw.kovidgoyal.net/kitty/changelog/ | html2text) | less
sudo sh ~/.config/kitty/installer.sh launch=n dest=/opt

sudo update-alternatives \
  --install /usr/bin/x-terminal-emulator \
  x-terminal-emulator /opt/kitty.app/bin/kitty 99

Note: Kitty prepends its bin folder to the path. So it is more coherent/simpler to copy this behaviour into Zsh.

lazygit

Dependencies

  • git-delta

Binary Releases

mkdir -p /opt/lazygit/bin
cd /opt/lazygit/bin

URI=https://api.github.com/repos/jesseduffield/lazygit
LOCATION=$(curl -s $URI/releases/latest \
  | grep "browser_download_url.*Linux_x86_64" \
  | awk '{ print $2 }' \
  | sed 's/,$//'       \
  | sed 's/"//g')
echo $LOCATION

wget $LOCATION
tar xf *.tar.gz(om[1])

Go

export GOPATH=/opt/go && sudo mkdir -p $GOPATH
sudo -E go install github.com/jesseduffield/lazygit@latest

Problem: Commit ID, build date and version aren't set.

$ lazygit --version
commit=, build date=, build source=unknown, version=unversioned, os=linux, arch=amd64, git version=2.43.0

Manual

mkdir -p $HOME/dev_3rd/golang
cd $HOME/dev_3rd/golang

git clone https://github.com/jesseduffield/lazygit.git
cd lazygit
go install

neovim

Dependencies

  • kitty / NerdFont
  • libfuse2
  • xsel

Binary Nightly Release

mkdir -p /opt/neovim/bin
cd /opt/neovim/bin

curl -LO https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage
chmod u+x nvim.appimage
ln -sf nvim.appimage nvim
ln -sf nvim.appimage vi

cd $HOME
nvim --version
vi --version

nnn — n³

Dependencies

Source Code of Latest Release

 # Download archive & extract files
URI=https://github.com/jarun/nnn
xdg-open $URI/releases/latest
ARCHIVE=$(echo $HOME/Downloads/*.gz(om[1])) && echo $ARCHIVE
tar xf $ARCHIVE

 # Compile
cd nnn*(om[1])
make clean
sudo make PREFIX=/opt/nnn O_GITSTATUS=1 O_NAMEFIRST=1 O_NERD=1 install

 # Copy plugins
plugins/getplugs master

From repository

git clone https://github.com/jarun/nnn.git

and then, as above…