theme - formating

This commit is contained in:
Don Harper 2024-09-01 10:30:16 -05:00
parent 8355c7ab83
commit f1c469c7fc
30 changed files with 287 additions and 105 deletions

View file

@ -19,7 +19,6 @@
./neovim.nix
./newsboat.nix
./taskwarrior.nix
./todoman.nix
./topgrade.nix
./tmux.nix
./vifm.nix

View file

@ -9,7 +9,10 @@
general = {
default_action = "list";
editor = "${pkgs.neovim}/bin/nvim";
merge_editor = ["${pkgs.neovim}/bin/nvim" "-d"];
merge_editor = [
"${pkgs.neovim}/bin/nvim"
"-d"
];
};
"contact table" = {
display = "first_name";
@ -19,11 +22,24 @@
show_uids = "no";
sort = "last_name";
localize_dates = "yes";
preferred_phone_number_type = ["pref" "cell" "home"];
preferred_email_address_type = ["pref" "work" "home"];
preferred_phone_number_type = [
"pref"
"cell"
"home"
];
preferred_email_address_type = [
"pref"
"work"
"home"
];
};
vcard = {
private_objects = ["Jabber" "Skype" "Twitter" "Mastodon"];
private_objects = [
"Jabber"
"Skype"
"Twitter"
"Mastodon"
];
preferred_version = "3.0";
search_in_source_files = "no";
skip_unparsable = "no";

View file

@ -18,7 +18,13 @@
enable = true;
new = {
tags = ["unread"];
ignore = [".mbsyncstate" ".uidvalidity" ".mbsyncstate.journal" ".mbsyncstate.new" ".mbsyncstate.lock"];
ignore = [
".mbsyncstate"
".uidvalidity"
".mbsyncstate.journal"
".mbsyncstate.new"
".mbsyncstate.lock"
];
};
extraConfig = {
database = {

View file

@ -1,5 +1,11 @@
{pkgs, ...}: {
home.packages = with pkgs; [taskwarrior taskwarrior-tui tasksh vit timewarrior];
home.packages = with pkgs; [
taskwarrior
taskwarrior-tui
tasksh
vit
timewarrior
];
programs.taskwarrior = {
enable = true;
colorTheme = "dark-green-256";

View file

@ -1,15 +0,0 @@
{pkgs, ...}: {
home.packages = with pkgs; [todoman];
xdg.configFile."todoman/config.py".text =
/*
python
*/
''
path = "~/.config/vdirsyncer/storage/calendar/*"
date_format = "%Y-%m-%d"
time_format = "%H:%M"
default_list = "duckunix@gmail.com"
# default_due = 48
default_command = "list --startable"
'';
}