https://github.com/overshard/dotfiles
A variety of config files for setting up new systems.
https://github.com/overshard/dotfiles
bash dotfiles git neovim vscode
Last synced: 5 months ago
JSON representation
A variety of config files for setting up new systems.
- Host: GitHub
- URL: https://github.com/overshard/dotfiles
- Owner: overshard
- License: bsd-2-clause
- Created: 2011-07-04T02:31:22.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2024-07-13T16:38:17.000Z (almost 2 years ago)
- Last Synced: 2025-04-14T07:42:04.645Z (about 1 year ago)
- Topics: bash, dotfiles, git, neovim, vscode
- Language: Shell
- Homepage: https://isaacbythewood.com
- Size: 121 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# dotfiles
The various dotfiles I use on my development linux server, I don't like to do
much now days as I am a huge believer in using defaults to lower configuration
issues and be able to help my peers easier. Butsometimes you just gotta
customize..
## Getting Started
This pulls the latest from GitHub commit on a fresh system and then links to each
file, please review the script before running it:
curl -o- https://raw.githubusercontent.com/overshard/dotfiles/master/bootstrap.sh | bash
## VS Code Extensions
To get your current extensions for VS Code:
code --list-extensions > extensions.txt
To install extensions on Linux and MacOS:
cat extensions.txt | xargs -L 1 echo code --install-extension
To install extensions on Windows:
type extensions.txt | % { "code --install-extension $_" }