Skip to content

Instantly share code, notes, and snippets.

View abuGit's full-sized avatar
😁

Andreas abuGit

😁
View GitHub Profile
@abuGit
abuGit / make_alacritty_debian
Last active January 7, 2023 02:50
alacritty - build/make debian package
#!/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
@abuGit
abuGit / apt.conf
Created May 11, 2022 17:37
aptitude configuration file with settings for dark mode themes and sudo support
###############################################################################
# _ _ _
# __ _ _ __| |_(_) |_ _ _ __| |___
# / _` | '_ \ _| | _| || / _` / -_)
# \__,_| .__/\__|_|\__|\_,_\__,_\___|
# |_|
# 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
@abuGit
abuGit / .alacritty.yml
Created May 9, 2022 00:01
alacritty configuration file (version: 0.11.0-dev)
###############################################################################
# _ _ _ _ _
# / \ | | __ _ ___ _ __(_) |_| |_ _ _
# / _ \ | |/ _` |/ __| '__| | __| __| | | |
# / ___ \| | (_| | (__| | | | |_| |_| |_| |
# /_/ \_\_|\__,_|\___|_| |_|\__|\__|\__, |
# |___/
# $HOME/.alacritty.yml
# version: 0.11.0-dev https://github.com/alacritty/alacritty
###############################################################################
@abuGit
abuGit / .tmux.conf
Created April 28, 2022 02:07 — forked from tsl0922/.tmux.conf
vim style tmux config
# 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."