Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/philipmat/dotfiles
Config files and system bootstrap.
https://github.com/philipmat/dotfiles
Last synced: about 1 month ago
JSON representation
Config files and system bootstrap.
- Host: GitHub
- URL: https://github.com/philipmat/dotfiles
- Owner: philipmat
- License: mit
- Created: 2014-04-22T15:08:54.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T17:05:18.000Z (about 1 year ago)
- Last Synced: 2024-04-14T09:21:32.312Z (9 months ago)
- Language: Vim Script
- Size: 206 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotfiles
Config files and system bootstrap.
## How to bootstrap it
```sh
git clone https://github.com/philipmat/dotfiles .dotfiles
cd .dotfiles/
```### On a *nix computer
```sh
bash install.sh
```or better yet
```sh
bash install.sh --verbose --override
```### On a Windows computer
Using an *elevated* command prompt (because `mklink` requires admin rights):
```cmd
install.cmd /v /overide
```### Parameters for install script
- `-v`, `--verbose` - verbose details about the script executions;
- `-o`, `--override` - override existing files (default is to leave existing files alone);
- `-t`, `--test` - does not actual perform the commands that change the file system.To keep with traditional semantics, on Windows `install.cmd` also accepts `/`-parameters,
e.g. `/v` or `/override`.## Update submodules
1. First time: `git submodule update --init --recursive`
2. Afterward: `git submodule foreach git pull origin master`
or `git submodule update --recursive --remote` (after 1.8.2)
or `git pull --recurse-submodules` (after 1.8.5).## Install VSCode Extensions
- `extensions-all.txt` contains all the extensions I used over time
- `extensions-common.txt` - most common extensionsExtensions have been exported with `code --list-extensions`
and sorted case-insensitive (`sort -f`).On Windows:
```ps1
cat VSCode\extensions.txt | % { code --install-extension $_ }
```On Linux:
```sh
cat VSCode/extensions-common.txt | xargs -L 1 code --install-extension
```## Install Common Programs
### Windows
- PowerShell 7
- Scoop
- PowerToys
- WindowGrid```ps
scoop install git
scoop bucket aff extras
```### MacOS
```sh
brew install \
bat curlie difftastic eza \
fd fzf fig fnm \
gron jq neovim pyenv \
ripgrep sqlite \
starship tmux watch \
glance kdiff3 rectangle \
xz
```Nerd Fonts required for *starship*:
```sh
brew install --cask \
homebrew/cask-fonts/font-caskaydia-cove-nerd-font \
homebrew/cask-fonts/font-fira-mono-nerd-font \
homebrew/cask-fonts/font-victor-mono-nerd-font \
homebrew/cask-fonts/font-iosevka-nerd-font \
homebrew/cask-fonts/font-jetbrains-mono-nerd-font
```Other installation steps:
- setup `fzf`: `$(brew --prefix)/opt/fzf/install`
- Install python: `pyenv install 3.10.9`
- install nvim plugins: `nvim --headless +PlugInstall +qa`Optional: nushell, xonsh
Manual install:
- [oh-my-zsh](https://ohmyz.sh/#install)
- [Bitwarden](https://apps.apple.com/us/app/bitwarden/id1352778147?mt=12)
- [VSCode](https://code.visualstudio.com/)
- [SourceTree](https://www.sourcetreeapp.com/)
- [Docker Desktop](https://www.docker.com/products/docker-desktop/)
- [Remote Desktop Beta](https://install.appcenter.ms/orgs/rdmacios-k2vy/apps/microsoft-remote-desktop-for-mac/distribution_groups/all-users-of-microsoft-remote-desktop-for-mac)
- [Battery Monitor](https://apps.apple.com/us/app/battery-monitor-health-info/id836505650?mt=12)
- [nvm - node version manager](https://github.com/nvm-sh/nvm#installing-and-updating)