Config files for setting up new systems: bash, git, neovim, and VS Code, linked into place by a small install script.
bashdotfilesgithandcodedneovimshellvscode
1> **Archived.** This project is no longer in use and no longer maintained. Last updated July 2024.
2
3# dotfiles
4
5The various dotfiles I use on my development linux server, I don't like to do
6much now days as I am a huge believer in using defaults to lower configuration
7issues and be able to help my peers easier. Butsometimes you just gotta
8customize..
9
10
11## Getting Started
12
13This pulls the latest from GitHub commit on a fresh system and then links to each
14file, please review the script before running it:
15
16 curl -o- https://raw.githubusercontent.com/overshard/dotfiles/master/bootstrap.sh | bash
17
18
19## VS Code Extensions
20
21To get your current extensions for VS Code:
22
23 code --list-extensions > extensions.txt
24
25To install extensions on Linux and MacOS:
26
27 cat extensions.txt | xargs -L 1 echo code --install-extension
28
29To install extensions on Windows:
30
31 type extensions.txt | % { "code --install-extension $_" }