home manager
This commit is contained in:
parent
7efd15464e
commit
d067c0fcdb
6 changed files with 17 additions and 6 deletions
|
|
@ -34,7 +34,7 @@
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
qbittorrent
|
qbittorrent
|
||||||
vlc
|
vlc
|
||||||
mullvad-vpn
|
# mullvad-vpn
|
||||||
ffmpeg
|
ffmpeg
|
||||||
libnotify
|
libnotify
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -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";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@
|
||||||
|
|
||||||
# web
|
# web
|
||||||
chromium
|
chromium
|
||||||
mullvad-vpn
|
# mullvad-vpn
|
||||||
# nyxt
|
# nyxt
|
||||||
|
|
||||||
# media
|
# media
|
||||||
|
|
|
||||||
|
|
@ -60,7 +60,11 @@
|
||||||
end
|
end
|
||||||
|
|
||||||
function note --description 'Create a new note'
|
function note --description 'Create a new note'
|
||||||
|
if count $argv > /dev/null
|
||||||
nvim -c "call CreateNote('$argv')"
|
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'
|
||||||
|
|
|
||||||
|
|
@ -70,7 +70,6 @@
|
||||||
|
|
||||||
# web
|
# web
|
||||||
nyxt
|
nyxt
|
||||||
mullvad-vpn
|
|
||||||
|
|
||||||
# media
|
# media
|
||||||
castget
|
castget
|
||||||
|
|
|
||||||
|
|
@ -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(),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue