Skip to content

Latest commit

 

History

History
62 lines (42 loc) · 1.73 KB

README.md

File metadata and controls

62 lines (42 loc) · 1.73 KB

Vladimir’s dotfiles

MacOSX

Using Git and the bootstrap script

You can clone the repository wherever you want. The bootstrapper script will pull in the latest version and copy the files to your home folder.

git clone https://github.com/vladimirdolzhenko/dotfiles.git && cd dotfiles && source install.zsh

To update, cd ~/dotfiles repository and then:

source install.zsh

Git-free install

To install these dotfiles without Git:

cd && mkdir dotfiles && cd dotfiles && curl -L https://github.com/vladimirdolzhenko/dotfiles/tarball/master | tar -xzv --strip-components 1 --exclude={README.md,LICENSE}
source install.zsh

Update

To update specific module, e.g. dev:

./install.zsh dev

or update specific submodule, e.g. dock of module osx:

./install.zsh osx/dock

Windows

To run you need admin permissions.

install.bat installs choco , a set of useful apps like far, conemu, development tools (git, java, gradle, maven, intellij idea), fonts (FiraCode, SourceCodeProd) and WindowsSubsystemLinux (with Ubuntu 18.04 LTS).

Git-free install

"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;Invoke-WebRequest -Uri http://github.com/vladimirdolzhenko/dotfiles/archive/master.zip -OutFile dotfiles.zip -UseBasicParsing; Expand-Archive dotfiles.zip -DestinationPath ."
cd dotfiles-master
install.bat

Thanks to…