Skip to content

davidjenni/dotfiles

Repository files navigation

dot files

DotFiles for my macOS, Win32 & Linux environments. Geared towards use of git and neovim.

PullRequest

Screenshots

  • macOS

macOS terminal

  • Win11

Windows terminal

Installation

Windows 10/11

to bootstrap, run this in a Windows PowerShell prompt:

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force
irm 'https://raw.githubusercontent.com/davidjenni/dotfiles/main/bootstrap.ps1' | iex

For a headless install (elevated), run

powershell -NoProfile -ExecutionPolicy RemoteSigned -command { Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force; $env:DOT_HEADLESS=1; irm https://raw.githubusercontent.com/davidjenni/dotfiles/main/bootstrap.ps1 | iex }

macOS 14+/Ubuntu 22+/Debian 12+ (WSL or VM)

to bootstrap, run this in a default Terminal.app prompt:

curl -fsSL https://raw.githubusercontent.com/davidjenni/dotfiles/main/bootstrap.sh | bash

Some minimal Debian images don't have curl pre-installed (e.g. the WSL Debian image doesn't)

sudo apt update && sudo apt install curl -y