nix-config/modules/fish.nix

159 lines
4.6 KiB
Nix
Raw Normal View History

{ pkgs, ... }:
2023-06-11 15:51:26 +02:00
2023-06-22 16:42:23 +02:00
{
2023-05-18 15:49:56 +02:00
users.defaultUserShell = pkgs.fish;
environment.shells = [ pkgs.fish ];
2023-05-18 15:49:56 +02:00
environment.sessionVariables = {
GIT_DISCOVERY_ACROSS_FILESYSTEM = "1";
FZF_DEFAULT_OPTS = "--height 40% --reverse --border --color=16";
NODE_OPTIONS = "--max_old_space_size=16384";
2023-06-26 03:40:49 +02:00
BAT_THEME = "base16";
GATSBY_TELEMETRY_DISABLED = "1";
};
environment.systemPackages = with pkgs; [
wget
jq
eza
fd
fzf
ripgrep
];
2023-05-18 15:49:56 +02:00
programs.fish = {
enable = true;
shellAliases = {
ls = "${pkgs.eza}/bin/eza --icons --group-directories-first --no-quotes -I 'lost+found'";
tree = "${pkgs.eza}/bin/eza --icons --group-directories-first --no-quotes --all --long --tree -I 'node_modules|.git|public|lost+found|target|.next|.cache|.nuxt|themes|.direnv|.wrangler|.vercel|dist'";
2023-05-18 15:49:56 +02:00
mv = "mv -i";
cp = "cp -ia";
rg = "${pkgs.ripgrep}/bin/rg --max-columns=2000 --smart-case";
ncu = "${pkgs.npm-check-updates}/bin/ncu --interactive --format group";
2023-05-18 15:49:56 +02:00
};
shellAbbrs = {
g = "git";
ga = "git add";
gaa = "git add --all";
gap = "git add --patch";
2023-07-26 18:55:42 +02:00
gapp = "git apply";
gb = "git branch --verbose";
gbr = "git branch --verbose --remotes";
gbd = "git branch --delete";
2023-07-18 16:29:30 +02:00
gbD = "git branch --delete --force";
2023-05-18 15:49:56 +02:00
gc = "git commit -m";
gca = "git commit --amend";
gcl = "git clone";
gco = "git checkout";
gcot = "git checkout --theirs";
gcp = "git cherry-pick --strategy-option theirs";
gcpx = "git cherry-pick --strategy-option theirs -x";
2023-07-18 13:19:49 +02:00
gd = "git diff";
gds = "git diff --staged";
2023-07-18 16:12:10 +02:00
gf = "git fetch";
2023-05-18 15:49:56 +02:00
gi = "git init";
gl = "git log --oneline --decorate --graph -n 10";
2023-05-18 15:49:56 +02:00
gm = "git merge";
2023-07-18 13:19:49 +02:00
gp = "git push";
2023-08-06 22:49:41 +02:00
gpu = "git pull";
2023-07-18 13:19:49 +02:00
gr = "git reset HEAD~";
2023-06-06 16:03:09 +02:00
gR = "git restore";
gRs = "git restore --staged";
2023-05-18 15:49:56 +02:00
gra = "git remote add";
2023-07-18 13:19:49 +02:00
gre = "git remote --verbose";
2023-05-18 15:49:56 +02:00
grh = "git reset HEAD";
2023-07-18 13:19:49 +02:00
grr = "git reset --hard HEAD~";
2023-08-05 03:38:38 +02:00
grb = "git rebase --interactive";
grbc = "git rebase --continue";
2023-05-18 15:49:56 +02:00
gs = "git status";
2023-09-12 21:28:43 +02:00
gsma = "git submodule add";
gsmu = "git submodule update --init --remote --recursive";
2023-05-18 15:49:56 +02:00
gst = "git stash";
gstp = "git stash pop";
2023-07-26 18:55:55 +02:00
gsw = "git switch";
2023-05-18 15:49:56 +02:00
gt = "git tag";
gts = "git tag -s";
y = "yarn";
ya = "yarn add";
yb = "yarn build";
2023-05-18 15:49:56 +02:00
yar = "yarn remove";
yd = "yarn dev";
2023-05-18 15:49:56 +02:00
yi = "yarn init";
yin = "yarn install";
yu = "yarn upgrade-interactive";
2023-07-15 18:42:11 +02:00
tp = "trash put";
tl = "trash list";
tr = "trash restore";
te = "trash empty";
2023-08-02 04:23:06 +02:00
nf = "nix flake";
nfu = "nix flake update";
npr = "nixpkgs-review pr --run fish --print-result";
2023-08-02 04:23:06 +02:00
nd = "nix develop --command fish";
nb = "nix build";
ns = "nix shell";
nr = "nix run";
ncg = "sudo nix-collect-garbage -d";
nvd = "nvd --color always diff /run/current-system result | less -R";
2023-08-02 04:23:06 +02:00
2023-09-27 18:33:26 +02:00
b = "bun";
br = "bun run";
bt = "bun test";
bi = "bun init";
bc = "bun create";
bin = "bun install";
ba = "bun add";
brm = "bun remove";
bu = "bun update";
bb = "bun build";
2023-08-03 18:34:48 +02:00
ci = "cargo init";
cin = "cargo info";
cu = "cargo update";
ca = "cargo add";
cab = "cargo add --build";
cad = "cargo add --dev";
2023-08-03 18:34:48 +02:00
cb = "cargo build";
cr = "cargo run";
cs = "cargo search";
2023-08-08 02:22:56 +02:00
ct = "cargo tree --depth 1";
2023-08-03 18:34:48 +02:00
cn = "cargo new";
crm = "cargo remove";
crmb = "cargo remove --build";
crmd = "cargo remove --dev";
2023-08-03 18:34:48 +02:00
cc = "cargo clippy";
cf = "cargo fmt";
2023-08-31 22:17:35 +02:00
dc = "deno compile";
dr = "deno run";
di = "deno install";
dt = "deno task";
dT = "deno test --watch";
2023-05-18 15:49:56 +02:00
dl = "yt-dlp";
vol = "wpctl set-volume '@DEFAULT_AUDIO_SINK@'"; # Change the volume, e.g. vol 10%+, vol 10%-, vol 100%
df = "df --human-readable --total";
2023-05-18 15:49:56 +02:00
du = "du --human-readable --summarize";
jis = "recode shift_jis..utf8"; # Easily convert shift_jis-encoded files to utf8
utf16 = "recode utf16..utf8"; # Rarely, some files from Japan are utf16 instead
2023-05-18 15:49:56 +02:00
jp = "LANG=ja_JP.UTF-8 LC_ALL=ja_JP.UTF-8";
vm = "nixos-rebuild build-vm --flake . && ./result/bin/run-nixos-vm && trash put result nixos.qcow2";
sw = "sudo nixos-rebuild switch --flake .";
2023-06-12 09:48:15 +02:00
tf = "treefmt";
2023-05-18 15:49:56 +02:00
2023-07-18 13:19:49 +02:00
c = "clear";
2023-05-18 15:49:56 +02:00
e = "exit";
k = "kitty @ set-background-opacity";
2023-05-18 15:49:56 +02:00
l = "ls -l";
2023-06-06 16:37:06 +02:00
n = "nvim";
j = "joshuto";
2023-06-06 16:17:06 +02:00
t = "tree";
2023-11-14 16:37:30 +01:00
z = "zathura";
2023-05-18 15:49:56 +02:00
};
};
}