home manager

This commit is contained in:
Till 2024-06-25 11:49:44 +02:00
parent 7efd15464e
commit d067c0fcdb
6 changed files with 17 additions and 6 deletions

View file

@ -34,7 +34,7 @@
wl-clipboard wl-clipboard
qbittorrent qbittorrent
vlc vlc
mullvad-vpn # mullvad-vpn
ffmpeg ffmpeg
libnotify libnotify
]; ];

View file

@ -113,5 +113,13 @@ in
url = "http://i.cal.to/ical/5940/eintrachtfrankfurt/spielplan-frauen-profis/28ae0d30.f781380b-1763bff2.ics"; url = "http://i.cal.to/ical/5940/eintrachtfrankfurt/spielplan-frauen-profis/28ae0d30.f781380b-1763bff2.ics";
}; };
}; };
"euro" = calDefaults // {
khal.enable = true;
khal.color = "dark green";
remote = {
type = "http";
url = "https://football.bkn.dev/euro/2024/ics/?flags";
};
};
}; };
} }

View file

@ -34,7 +34,7 @@
# web # web
chromium chromium
mullvad-vpn # mullvad-vpn
# nyxt # nyxt
# media # media

View file

@ -60,7 +60,11 @@
end end
function note --description 'Create a new note' function note --description 'Create a new note'
nvim -c "call CreateNote('$argv')" if count $argv > /dev/null
nvim -c "call CreateNote('$argv')"
else
nvim ~/notes/(ls ~/notes/ | fzf)
end
end end
function lipsum --description 'Create placeholder text' function lipsum --description 'Create placeholder text'

View file

@ -70,7 +70,6 @@
# web # web
nyxt nyxt
mullvad-vpn
# media # media
castget castget

View file

@ -7,8 +7,8 @@ lua <<EOF
end, end,
}, },
window = { window = {
documentation = cmp.config.window.bordered(), -- documentation = cmp.config.window.bordered(),
completion = cmp.config.window.bordered(), -- completion = cmp.config.window.bordered(),
}, },
mapping = { mapping = {
['<C-p>'] = cmp.mapping.select_prev_item(), ['<C-p>'] = cmp.mapping.select_prev_item(),