Skip to content
/ dotfiles Public

πŸš§πŸ› οΈ .files and setup configs - to help overcome my fear of setting up a new machine

Notifications You must be signed in to change notification settings

LSYS/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

My .files and setup configurations

alt text

show/hide

My key concerns/needs

  • WSL
  • Use package managers whenever possible (apt, brew, winget, choco, npm)
  • Dotfiles are symlinked from this repo into $HOME
  • (Mini)Conda, Jupyter, Python
  • LaTeX + reveal-md for typesetting
  • Bash with Oh-My-Posh

Installation: Main Scripts

Using the bootstrap script

The bootstrap file will take care of installing almost everything in my Linux subsystem. Just cd into the local folder of this repo and run ./bootstrap. This bootstrap script calls the individual installers to set up the dotfiles, bin/, and package installers using APT, Homebrew (Linuxbrew), and NPM.

cd $HOME 
git clone https://github.com/LSYS/dotfiles.git
cd dotfiles
./bootstrap

Using the PowerShell scripts

The PowerShell scripts in win/ will take care of installing Windows OS applications using winget and, to a smaller extent for applications that cannot be installed from winget, Chocolatey. To install apps using winget and Chocolatey:

cd win
./winget.ps1
./choco.ps1

Installation: Order of Installation (Win)

  1. Install WSL: Open PowerShell as administrator

    wsl --install -d Debian
    # confirm that bash is running
    which $SHELL
  2. Install Native Windows apps: Open PowerShell (./choco.ps1 need Admin)

    ./winget.ps1
    ./choco.ps1

    This will install WindowsTerminal and Oh-My-Posh. Type

    oh-my-posh font install

    to install the fonts and choose Meslo (recommended). Seth the font in WindowTerminal setting (settings.json)

    {
        "profiles":
        {
            "defaults":
            {
                "font":
                {
                    "face": "MesloLGM NF"
                }
            }
        }
    }
  3. Open WSL (Debian) in WindowsTerminal and run the bootstrap installer:

    cd $HOME/dotfiles && ./bootstrap

    This will call the following installers:

    • dotfiles.sh
    • win/wslconfig.sh
    • bin/install.sh
    • packages/apt.sh
    • packages/brew.sh
    • packages/npm.sh
    • monty/install.sh
  4. Once Oh-My-Posh is installed via packages/brew.sh. Check that it works

    eval "$(oh-my-posh init bash)"

    and symlink the poshthemes to home (where bash/.bash_profile will look for the themes)

    cd $HOME && mkdir poshthemes && cd poshthemes
    ln -s /home/linuxbrew/.linuxbrew/opt/oh-my-posh/themes/* 

Additional Details

Bash

Will be installed in ./dotfiles.sh.

.
β”œβ”€β”€ bash
β”‚  β”œβ”€β”€ .aliases
β”‚  β”œβ”€β”€ .bash_profile
β”‚  β”œβ”€β”€ .exports
β”‚  β”œβ”€β”€ .functions
β”‚  └── .inputrc
  • .aliases: Shell aliases defined here (including some for Git)
  • .bash_profile: General bash settings (including Oh-My-Posh and sources other bash dotfiles)
  • .exports: For environment variables (e.g., custom shell utilities and conda is specified here)
  • .functions: For functions too big for aliases but too small for bin/
  • .inputrc: Config for input (case-insensitive completion here)

(Note: .bash_profile is the first config that will be read by bash. So this file will source all other relevant dotfiles.)

Git

Will be installed in ./dotfiles.sh.

β”œβ”€β”€ git
β”‚  └── .gitconfig

.gitconfig: Includes Git aliases.

Python + (Mini)Conda (./monty/)

Will be installed by ./monty/install.sh.

β”œβ”€β”€ monty
β”‚  β”œβ”€β”€ install.sh
β”‚  β”œβ”€β”€ jupyter_notebook_config.py
β”‚  └── requirements
β”‚     β”œβ”€β”€ base.txt
β”‚     β”œβ”€β”€ dev.txt
β”‚     β”œβ”€β”€ docs.txt
β”‚     └── gis.txt
  • jupyter_notebook_config.py: Needed to make sure notebooks open in browser (native from Windows)
  • install.sh: Installs Miniconda, Jupyter Notebook (and its extensions), installs base packages into base, creates venv(s) and installs the relevant packages into the venv(s).

Packages

Will be installed by packages/apt.sh, packages/brew.sh, and packages/npm.sh.

β”œβ”€β”€ packages
β”‚  β”œβ”€β”€ apt.sh
β”‚  β”œβ”€β”€ brew.sh
β”‚  └── npm.sh
  • apt.sh: Installs utilities from APT.
  • brew.sh Sets up and install Linuxbrew.
  • npm.sh: Sets up NVM and NPM. Installs reveal-md (reveal.js) and other utilities only available from NPM.

Windows

Will be installed by win/winget.ps1 and win/choco.ps1 (using PowerShell; win/choco.ps1 will require admin priviledges).

β”œβ”€β”€ win
β”‚  β”œβ”€β”€ .wslconfig
β”‚  β”œβ”€β”€ .wslconfig-x1
β”‚  β”œβ”€β”€ chocolatey.ps1
β”‚  β”œβ”€β”€ terminal-settings.json
β”‚  β”œβ”€β”€ winget.ps1
β”‚  └── wslconfig.sh
  • winget.ps1: Installs winget and follow up by installing other applications (e.g. Chrome, WindowsTerminal, Oh-My-Posh, GNUMake, PowerToys, 7zip, Slack, Sublime Text, Git etc.).
  • chocolatey.ps1: Installs Chocolatey and other Windows app that cannot be installed by winget (e.g., MikTex, TexStudio, tree, postgresql, pgadmin4, du, etc.). This will require PowerShell admin priviledges.
  • wslconfig.sh: Installs .wslconfig to c/Users/<username>

Miscellaneous (./misc/)

β”œβ”€β”€ misc
β”‚  β”œβ”€β”€ img
β”‚  β”œβ”€β”€ .curlrc
β”‚  β”œβ”€β”€ .latexmkrc
β”‚  β”œβ”€β”€ .wgetrc
β”‚  β”œβ”€β”€ references.md
β”‚  └── vimium.txt

References

See here.

About

πŸš§πŸ› οΈ .files and setup configs - to help overcome my fear of setting up a new machine

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published