Cleaning, adding some commands, etc.

master
Dustin Swan 11 months ago
parent 8879215470
commit 72c1267824
Signed by: dustinswan
GPG Key ID: AB49BD6B2B3A6377

@ -1,13 +1,31 @@
#!/bin/sh
if command -v mbsync &> /dev/null; then
mbsync -a
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title Test
# @raycast.mode compact
# Optional parameters:
# @raycast.icon 🤖
# Documentation:
# @raycast.author dustinswan
# @raycast.authorURL https://raycast.com/dustinswan
if
command -v mbsync >/dev/null
then
mbsync -a
fi
if command -v mu &> /dev/null; then
mu index
if
command -v mu >/dev/null
then
mu index
fi
if command -v vdirsyncer &> /dev/null; then
vdirsyncer sync
if
command -v vdirsyncer >/dev/null
then
vdirsyncer sync
fi

@ -7,7 +7,6 @@ in
home.stateVersion = "18.09";
home.packages = with pkgs; [
ripgrep
fd
mosh
w3m
@ -29,6 +28,8 @@ in
glow
spotify-tui
spotifyd
yt-dlp
youtube-tui
amfora
duf
pandoc
@ -62,10 +63,14 @@ in
ocamlPackages.ocp-indent
ocamlPackages.merlin
rustup
zig
go
cmake
racket-minimal
# ghc haskell-language-server hlint haskellPackages.hoogle
# racket-minimal
ghc
haskell-language-server
hlint
haskellPackages.hoogle
lua53Packages.luarocks
translate-shell
ispell
@ -142,6 +147,7 @@ in
v = "vi";
l = "exa -lah --icons --git";
n = "nnn";
t = "trans";
h = "himalaya";
er = "rm -rf logs; unzip -o";
srsync = "rsync --rsync-path='sudo rsync'";
@ -336,6 +342,7 @@ in
programs.noti.enable = true;
programs.btop.enable = true;
programs.tealdeer.enable = true;
programs.ripgrep.enable = true;
programs.keychain = {
enable = true;

@ -10,13 +10,13 @@ in
programs.msmtp.enable = true;
programs.neomutt = {
enable = true;
sidebar.enable = true;
sort = "reverse-threads";
};
# programs.neomutt = {
# enable = true;
# sidebar.enable = true;
# sort = "reverse-threads";
# };
programs.himalaya.enable = true;
# programs.himalaya.enable = true;
programs.aerc = {
enable = true;
@ -34,7 +34,7 @@ in
accounts = {
FastMail = {
address = "dustin@dustinswan.com";
aliases = ["dustinswan@gmail.com"];
aliases = [ "dustinswan@gmail.com" ];
realName = "Dustin Swan";
primary = true;
folders = {
@ -62,7 +62,7 @@ in
# };
mu.enable = true;
msmtp.enable = true;
neomutt.enable = true;
# neomutt.enable = true;
aerc.enable = true;
# himalaya = {
# enable = true;
@ -73,10 +73,10 @@ in
# draft-folder = "INBOX.Drafts";
# };
# };
# signature = {
# text = ''Dustin Swan | dustinswan.com'';
# showSignature = "append";
# };
signature = {
text = ''Dustin Swan | dustinswan.com'';
showSignature = "append";
};
};
};
};

Loading…
Cancel
Save