dotfiles

My configuration files.
Log | Files | Refs | README

commit a8745e3cee044b37babfb247f95aee1d52c61ca7
parent 64a7c9a717ff4d24e42f4e210e8d912aecc25a28
Author: Sven Möller <sven@svenmoeller.xyz>
Date:   Sat, 28 May 2022 19:15:07 +0200

Add some config

Diffstat:
Mbash/.bashrc | 1+
Akhal/.config/khal/config | 22++++++++++++++++++++++
Akhard/.config/khard/khard.conf | 53+++++++++++++++++++++++++++++++++++++++++++++++++++++
Asurfraw/.config/surfraw/bookmarks | 1+
Asurfraw/.config/surfraw/conf | 1+
Atodoman/.config/todoman/config.py | 3+++
6 files changed, 81 insertions(+), 0 deletions(-)

diff --git a/bash/.bashrc b/bash/.bashrc @@ -24,6 +24,7 @@ alias cga="git -C ~/.dotfiles add" alias cs="stow -d ~/.dotfiles" alias sf="sfeed_curses ~/.sfeed/feeds/*" alias w3m="w3m -B" +alias search="surfraw search" if [ -z $DISPLAY ]; then export BROWSER="w3m" diff --git a/khal/.config/khal/config b/khal/.config/khal/config @@ -0,0 +1,22 @@ +[calendars] + +[[my_calendar_local]] +path = ~/.calendars/* +type = discover + +[[my_contacts_local]] +path = ~/.contacts/32 +type = birthdays + +[locale] +timeformat = %H:%M +dateformat = %d.%m.%Y +longdateformat = %d.%m.%Y +datetimeformat = %d.%m.%Y %H:%M +longdatetimeformat = %d.%m.%Y %H:%M +unicode_symbols = False +weeknumbers = left + +[default] +highlight_event_days = True +timedelta = 1d diff --git a/khard/.config/khard/khard.conf b/khard/.config/khard/khard.conf @@ -0,0 +1,53 @@ +# example configuration file for khard version > 0.14.0 +# place it under ~/.config/khard/khard.conf +# This file is parsed by the configobj library. The syntax is described at +# https://configobj.readthedocs.io/en/latest/configobj.html#the-config-file-format + +[addressbooks] +[[Kontakte]] +path = ~/.contacts/32 + +[general] +debug = no +default_action = list +# These are either strings or comma seperated lists +editor = nvim, -i, NONE +merge_editor = vimdiff + +[contact table] +# display names by first or last name: first_name / last_name / formatted_name +display = first_name +# group by address book: yes / no +group_by_addressbook = no +# reverse table ordering: yes / no +reverse = no +# append nicknames to name column: yes / no +show_nicknames = no +# show uid table column: yes / no +show_uids = no +# sort by first or last name: first_name / last_name / formatted_name +sort = last_name +# localize dates: yes / no +localize_dates = no +# set a comma separated list of preferred phone number types in descending priority +# or nothing for non-filtered alphabetical order +preferred_phone_number_type = pref, cell, home +# set a comma separated list of preferred email address types in descending priority +# or nothing for non-filtered alphabetical order +preferred_email_address_type = pref, work, home + +[vcard] +# extend contacts with your own private objects +# these objects are stored with a leading "X-" before the object name in the vcard files +# every object label may only contain letters, digits and the - character +# example: +# private_objects = Jabber, Skype, Twitter +# default: , (the empty list) +private_objects = Jabber, Skype, Twitter +# preferred vcard version: 3.0 / 4.0 +preferred_version = 3.0 +# Look into source vcf files to speed up search queries: yes / no +search_in_source_files = no +# skip unparsable vcard files: yes / no +skip_unparsable = no + diff --git a/surfraw/.config/surfraw/bookmarks b/surfraw/.config/surfraw/bookmarks @@ -0,0 +1 @@ +search https://searx.be/search?q=%s diff --git a/surfraw/.config/surfraw/conf b/surfraw/.config/surfraw/conf @@ -0,0 +1 @@ +SURFRAW_text_browser=w3m diff --git a/todoman/.config/todoman/config.py b/todoman/.config/todoman/config.py @@ -0,0 +1,3 @@ +path = "~/.calendars/*" +date_format = "%d.%m.%Y" +time_format = "%H:%M"