The config files I use on my machines
Find a file
2022-08-11 22:25:23 +02:00
.config Configure neofetch 2022-08-11 22:25:23 +02:00
.ssh Add public SSH keys 2022-08-11 22:24:36 +02:00
.vim Configure vim 2022-08-11 22:24:35 +02:00
.bash_login Configure bash 2022-08-11 21:21:47 +02:00
.bash_logout Configure zsh 2022-08-11 21:22:50 +02:00
.bash_profile Configure bash 2022-08-11 21:21:47 +02:00
.bashrc Configure Python develop tool chain 2022-08-11 22:25:20 +02:00
.gitconfig Configure git 2022-08-11 21:22:52 +02:00
.hidden Hide LICENSE.txt and README.md in Gnome Nautilus 2022-08-09 14:13:46 +02:00
.p10k.zsh Configure zsh 2022-08-11 21:22:50 +02:00
.profile Configure Python develop tool chain 2022-08-11 22:25:20 +02:00
.psqlrc Configure psql 2022-08-11 22:24:36 +02:00
.zlogout Configure zsh 2022-08-11 21:22:50 +02:00
.zprofile Configure zsh 2022-08-11 21:22:50 +02:00
.zshenv Configure zsh 2022-08-11 21:22:50 +02:00
.zshrc Configure Python develop tool chain 2022-08-11 22:25:20 +02:00
LICENSE.txt Open-source the project 2022-07-10 20:54:42 +02:00
README.md Configure Python develop tool chain 2022-08-11 22:25:20 +02:00

Dotfiles

This repository contains useful (config) files that I use on my machines.

Initialization

On a freshly set up machine, run:

curl https://gitlab.webartifex.biz/alexander/dotfiles/-/raw/main/.config/shell/init_dotfiles.sh \
     > /tmp/init_dotfiles.sh \
  && source /tmp/init_dotfiles.sh

This gives you a local copy of the latest version of this repository (located in ~/.dotfiles) and initializes all the dotfiles provided here on the system. Further, zsh is set up with oh-my-zsh and zplug if it is installed.

Note: Log out and in again so that bash and zsh run as login shells. Otherwise, ~/.profile is probably not sourced.

Important: Don't forget to back up your current dotfiles!

Python Development Environments

The develop environments for Python are managed via pyenv.

To set them up, run:

create-or-update-python-envs

Several Python versions are installed. Additionally, two virtualenvs, called "interactive" and "utils", are also created:

  • "interactive" is the default environment, and
  • "utils" hosts globally available utilities (e.g., youtube-dl).

Use pyenv local ... to specify a particular Python binary for a project.