This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from dataclasses import dataclass | |
import duckdb | |
@dataclass | |
class DBParams: | |
user: str = "postgres" | |
password: str = "postgres" | |
host: str = "localhost" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
email = 101326085+jonbiemond@users.noreply.github.com | |
name = Jonathan Biemond | |
[commit] | |
gpgsign = true | |
[pull] | |
rebase = true | |
[fetch] | |
prune = true | |
[diff] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To reload run source $ZSH_CUSTOM/aliases.zs0 | |
# Custom aliases | |
alias python="python3" | |
alias activate="source .venv/bin/activate" | |
alias relalias="source $ZSH_CUSTOM/aliases.zsh" | |
alias vialias="nvim $ZSH_CUSTOM/aliases.zsh ; relalias" | |
alias dockershell="docker compose -f docker-compose.local.yml exec app /bin/bash" | |
alias dockerhardrestart="docker compose down -v && docker compose up -d" | |
# Git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#-------------------------------------------------------------------------- | |
# Configuration | |
#-------------------------------------------------------------------------- | |
# Use Vi mode | |
setw -g mode-keys vi | |
# Start window and pane numbering from 1 for easier switching | |
set -g base-index 1 | |
setw -g pane-base-index 1 |