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
set-window-option -g mode-keys vi | |
bind-key -T copy-mode-vi 'v' send -X begin-selection | |
bind-key -T copy-mode-vi 'y' send -X copy-selection-and-cancel | |
# Set the prefix to ^A. | |
unbind C-b | |
set -g prefix ^A | |
bind a send-prefix |
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
for i in $(seq 02 04); do | |
for j in $(seq 01 36); do | |
printf -v k "r%02dn%02d.sls\n" $i $j; | |
touch $k; | |
done; | |
done |
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
xmodmap -e "keycode 134 = Super_L" |
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
install_nerd_fonts() { | |
# https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/JetBrainsMono.zip | |
TMPDIR=/tmp/nerd-font-install | |
URL="https://github.com/ryanoasis/nerd-fonts/releases/download" | |
VERSION="v2.1.0" | |
FONTS=( | |
3270 | |
Agave AnonymousPro Arimo AurulentSansMono | |
BigBlueTerminal BitstreamVeraSansMono | |
CascadiaCode CodeNewRoman Cousine |
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
{ pkgs, lib, config, inputs, ... }: | |
{ | |
packages = | |
let | |
# mypkgs = import inputs.nixpkgs-unstable { | |
mypkgs = import inputs.nixpkgs { | |
inherit (pkgs.stdenv) system; |
OlderNewer