Mirror — primary at git.dannydannydanny.me
Find a file
2023-11-10 21:58:20 +01:00
.config 🚚 move fish.config to own folder 2023-11-10 21:22:41 +01:00
.github/workflows 🚚 rename workflow 2023-06-14 13:11:08 +02:00
.ssh vimwiki: dth @ DK023900WSL 2022-09-05 14:55:07 +02:00
bashscripts add script mzavoloka/gitls 2023-02-18 20:26:28 +01:00
etc 🦆 windows config lol 2022-09-22 13:48:38 +02:00
music_conf 📝 add requirements note 2022-05-19 18:36:54 +02:00
nvim_python_provider 🐍 make trgt for nvim pyprovider 2023-04-16 20:38:10 +02:00
scripts vimwiki: dth @ DK023900WSL 2022-10-13 15:57:13 +02:00
.editorconfig 🎨 expand editorconfig for makefile & brewfile 2022-05-31 15:14:03 +02:00
.fzf.zsh vimwiki: dth @ DK023900WSL 2023-04-11 09:07:53 +02:00
.gitignore 🙈 ignore py env 2022-06-22 23:04:40 +02:00
.locale.conf vimwiki: dth @ DK023900WSL 2023-06-27 09:11:23 +02:00
.tmux.conf revert outdated mouse command 🐭 2023-07-24 14:24:55 +02:00
.zshrc 🐛 💥 lf + fzf hotfix 2023-05-10 14:42:23 +02:00
brewfile 🎨 cleanup brewfile 2022-05-31 15:17:57 +02:00
firefox-scrolling.md vimwiki: dth @ DK023900WSL 2022-10-13 15:57:13 +02:00
gist-read-write.ipynb vimwiki: dth @ dth-MacBookAir 2022-07-26 17:25:29 +02:00
install.sh 🎨 clean up install script 2023-11-10 16:00:00 +01:00
install_fish.sh 🚚 move fish.config to own folder 2023-11-10 21:22:41 +01:00
install_fzf.sh 🥅 add basic error handling 2023-11-04 20:04:25 +01:00
install_nvim.sh 🚚 nvim config to install script 2023-11-10 21:25:59 +01:00
install_tmux.sh 📝 adjust echo message 2023-11-10 21:27:01 +01:00
LICENSE Initial commit 2022-03-28 15:12:54 +02:00
makefile 🔥 remove lf make target 2023-11-10 21:50:42 +01:00
README.md 📝 move issue 1 comments to readme 2023-11-10 21:58:20 +01:00
sas-cae.ahk vimwiki: dth @ DK023900WSL 2022-12-28 14:19:57 +01:00
server-ip-sync.md 🚧 wip SIS make-rules 2022-06-22 23:47:22 +02:00
server.md vimwiki: dth @ DK023900WSL 2023-01-09 09:04:59 +01:00
ubuntu.md vimwiki: dth @ DK023900WSL 2023-06-27 09:11:45 +02:00

dotfiles

This repo is an extension of dannydannydanny/methodology

Roadmap:

  • post OS install: ubuntu
  • post post OS install: firefox-scrolling
  • repurpose server-ip-sync
  • server cluster roadmap: server
    • add server-sync make-rule for ip-upload python cronjob
    • add server-sync make-rule for server ip fetching (and writing...)
  • low-level configs:
    • config tmux-local vs tmux-remote
      • remote nested sessions
      • change tmux:pane-switching bindings from arrow keys to vim bindings
  • specific machine level config:
    • config mac local machine
    • debian local machine
    • debian server
  • music config:

Windows

  • disable system sounds: start menu search: "change system sounds" -> set profile to None
  • change language / keyboard layout to en_US
  • get local admin rights
  • install powertoys
    • remap CAPS LOCK to L-CTRL
  • tmux pasteboard should play with windows pasteboard
    • configure nvim clipboard to use system clipboard - had to setup some windows yank script
  • install portmaster network monitor
  • install basic miktex (for LaTeX)
    • apt install texlive texlive-latex-extra (?)
  • install alacritty (use the installer, not portable)
    • add alacritty config: /mnt/c/Users/<winuser>/AppData/Roaming/alacritty/alacritty.yml

WSL

  • install wsl + WSL specifics
    • fix wsl dns issue via stackoverflow
      • write wsl.conf:
        • sudo touch /etc/wsl.conf
        • echo "[network]" | sudo tee /etc/wsl.conf > /dev/null
        • echo "generateResolvConf = false" | sudo tee -a /etc/wsl.conf > /dev/null
      • overwrite resolv.conf:
        • add content echo "nameserver 8.8.8.8" | sudo tee /etc/resolv.conf > /dev/null
    • add private folder symlink: ln -s -f /mnt/c/Users/<winuser>/Private ~/Private
wsl --install --web-download -d Debian
# <set username>
# <set password

# debian launches automatically
sudo apt update && sudo apt upgrade -y

# launch debian next time
wsl -d Debian

# the following installs aren't necessary in codespace 🤔
sudo apt install -y git curl # dotfiles deps
sudo apt install -y build-essential ncurses-dev  #  tmux dep

# ssh cloning is available after dotfiles installation - clone to /tmp/ for now
git clone https://github.com/DannyDannyDanny/dotfiles.git /tmp/dotfiles && cd /tmp/dotfiles/
bash install.sh
  • To restart: wsl --unregister Debian
  • Inside WSL:
    • config alacritty windows side: vi /mnt/c/Users/xxxx/AppData/Roaming/alacritty/alacritty.yml
    • sudo apt install lsb-release -y to enable lsb_release -a
    • echo 'nameserver 8.8.8.8' | sudo tee -a /etc/resolv.conf fix DNS issues

setup github

ssh-keygen -q -t ed25519 -N '' -f ~/.ssh/id_ed25519_github <<<y >/dev/null 2>&1

echo 'older machines might not support ed25519, then use RSA with 4096 bit key'
echo  'ssh-keygen -q -t rsa -b 4096 -N '' -f ~/.ssh/id_rsa_github <<<y >/dev/null 2>&1'

echo 'add ssh to key to github'
echo 'cat ~/.ssh/id_*_github.pub'
echo 'https://github.com/settings/ssh/new'

echo 'adding key to ssh-agent'
eval `ssh-agent -s`  # not  just ssh-agent -s
ssh-add ~/.ssh/id_*_github
echo 'dotfiles can now be clones via ssh to home dir'

dotfiles repo via ssh

echo 'clone and git config dotfiles repo'
git clone git@github.com:DannyDannyDanny/dotfiles.git

cd dotfiles
git config user.name "DannyDannyDanny"
git config user.email "dth@taiga.ai"
git config pull.rebase false
cd ..

  • remove section from ubuntu.md
  • change install script(s) to download file to /tmp/ instead of working directory
  • consider adding more error handling to install scripts

add sshd persistency


  • sort thse notes
    • setup ssh github
    • configure git (inspired by make setup_git)
    • install autohotkey
      • add script: shift and space + caps and escape: sas-cae.ahk