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
#!/usr/bin/env bash | |
# | |
# builds alacritty debian package | |
# Copyright © 2023 Andreas Buslehner | |
# | |
# LICENSE-MIT | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining | |
# a copy of this software and associated documentation files (the "Software"), | |
# to deal in the Software without restriction, including without limitation |
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 file: ~/.aptitude/config | |
# abu: 2022-05-11 17:28 | |
# save file for global use (root mode) as: /etc/apt/apt.conf | |
# or local use as: ~/.aptitude/config |
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
############################################################################### | |
# _ _ _ _ _ | |
# / \ | | __ _ ___ _ __(_) |_| |_ _ _ | |
# / _ \ | |/ _` |/ __| '__| | __| __| | | | | |
# / ___ \| | (_| | (__| | | | |_| |_| |_| | | |
# /_/ \_\_|\__,_|\___|_| |_|\__|\__|\__, | | |
# |___/ | |
# $HOME/.alacritty.yml | |
# version: 0.11.0-dev https://github.com/alacritty/alacritty | |
############################################################################### |
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
# vim style tmux config | |
# use C-a, since it's on the home row and easier to hit than C-b | |
set-option -g prefix C-a | |
unbind-key C-a | |
bind-key C-a send-prefix | |
set -g base-index 1 | |
# Easy config reload | |
bind-key R source-file ~/.tmux.conf \; display-message "tmux.conf reloaded." |