diesdas
This commit is contained in:
parent
013b6572b8
commit
a1464226a0
10 changed files with 37 additions and 18 deletions
|
|
@ -33,6 +33,7 @@
|
|||
fzf
|
||||
silver-searcher
|
||||
tmux
|
||||
nodejs
|
||||
wl-clipboard
|
||||
qbittorrent
|
||||
vlc
|
||||
|
|
|
|||
|
|
@ -113,12 +113,12 @@ in
|
|||
url = "http://i.cal.to/ical/5940/eintrachtfrankfurt/spielplan-frauen-profis/28ae0d30.f781380b-1763bff2.ics";
|
||||
};
|
||||
};
|
||||
"euro" = calDefaults // {
|
||||
"digitell" = calDefaults // {
|
||||
khal.enable = true;
|
||||
khal.color = "dark green";
|
||||
remote = {
|
||||
type = "http";
|
||||
url = "https://football.bkn.dev/euro/2024/ics/?flags";
|
||||
url = "https://crowd.server.uni-frankfurt.de/rest/calendar-services/1.0/calendar/export/subcalendar/private/f3087e14d058267065ebbdf43b096cb31517e9ea.ics";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -28,10 +28,10 @@ url=https://www.eintracht-podcast.de/feed/mp3
|
|||
# id3album=Edeltalk
|
||||
|
||||
[musikisteinewaffe]
|
||||
url= https://www.radioeins.de/archiv/podcast/ton_steine_scherben.xml/feed=podcast.xml
|
||||
url=https://www.radioeins.de/archiv/podcast/ton_steine_scherben.xml/feed=podcast.xml
|
||||
id3album=Musik ist eine Waffe
|
||||
|
||||
[*]
|
||||
id3contenttype=Podcast
|
||||
spool=/home/till/.local/share/podcasts
|
||||
|
||||
filename=%(channel_title)_%(date)_%(title).mp3
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
pullmla = "ssh tstraube@login.server.uni-frankfurt.de \"cd malta23 && git pull\"";
|
||||
pulldkg = "ssh till@geocom.uni-frankfurt.de \"cd /var/www/dkg_lp && git pull\"";
|
||||
pullgrid = "ssh till@geocom.uni-frankfurt.de \"cd /var/www/grid && git pull\"";
|
||||
pullgridp = "ssh till@geocom.uni-frankfurt.de \"cd /var/www/grid_preview && git pull\"";
|
||||
pullsneak = "ssh till@geocom.uni-frankfurt.de \"cd /var/www/dkg_lp_prev && git pull\"";
|
||||
pullkhole = "ssh root@ktiu.net \"cd /var/www/karaoke && git pull\"";
|
||||
buildfk = "curl -X POST -d '{}' https://api.netlify.com/build_hooks/65dc8705b91d7cbaf0a1e1b5";
|
||||
|
|
|
|||
|
|
@ -24,7 +24,10 @@
|
|||
dynamic-workspaces = true;
|
||||
};
|
||||
"org/gnome/desktop/session" = {
|
||||
idle-delay = 600;
|
||||
idle-delay = 0;
|
||||
};
|
||||
"org/gnome/settings-daemon/plugins/power" = {
|
||||
sleep-inactive-battery-timeout = 1200;
|
||||
};
|
||||
"org/gnome/settings-daemon/plugins/media-keys" = {
|
||||
screenreader = [];
|
||||
|
|
|
|||
|
|
@ -1,6 +1,10 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs.nodePackages; [
|
||||
typescript-language-server
|
||||
];
|
||||
|
||||
programs.neovim = {
|
||||
extraConfig = builtins.readFile ./config.vim;
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
setlocal makeprg=ts-node\ %
|
||||
setlocal makeprg=tsx\ %
|
||||
|
|
|
|||
|
|
@ -1,14 +1,20 @@
|
|||
lua <<EOF
|
||||
|
||||
local cmp = require('cmp')
|
||||
|
||||
cmp.setup({
|
||||
snippet = {
|
||||
expand = function(args)
|
||||
vim.fn["UltiSnips#Anon"](args.body)
|
||||
end,
|
||||
},
|
||||
performance = {
|
||||
debounce = 500,
|
||||
throttle = 500,
|
||||
},
|
||||
window = {
|
||||
-- documentation = cmp.config.window.bordered(),
|
||||
-- completion = cmp.config.window.bordered(),
|
||||
documentation = cmp.config.window.bordered(),
|
||||
completion = cmp.config.window.bordered(),
|
||||
},
|
||||
mapping = {
|
||||
['<C-p>'] = cmp.mapping.select_prev_item(),
|
||||
|
|
@ -16,11 +22,13 @@ lua <<EOF
|
|||
['<C-g>'] = cmp.mapping.abort(),
|
||||
-- ['<Tab>'] = cmp.mapping.confirm({ select = true }),
|
||||
['<Cr>'] = cmp.mapping.confirm({ select = false }),
|
||||
['<C-d>'] = cmp.mapping.scroll_docs(-4),
|
||||
['<C-f>'] = cmp.mapping.scroll_docs(4),
|
||||
},
|
||||
sources = cmp.config.sources({
|
||||
{ name = 'nvim_lsp' },
|
||||
{ name = 'ultisnips' },
|
||||
{ name = 'emoji' },
|
||||
{ name = 'nvim_lsp' },
|
||||
-- { name = 'ultisnips' },
|
||||
{ name = 'emoji' },
|
||||
}, {
|
||||
{ name = 'buffer' },
|
||||
})
|
||||
|
|
@ -43,9 +51,7 @@ lua <<EOF
|
|||
|
||||
cmp.setup.cmdline(':', {
|
||||
mapping = cmp.mapping.preset.cmdline(),
|
||||
sources = cmp.config.sources({
|
||||
{ name = 'path' }
|
||||
}, {
|
||||
sources = cmp.config.sources( {
|
||||
{ name = 'cmdline' }
|
||||
})
|
||||
})
|
||||
|
|
@ -63,12 +69,12 @@ lua <<EOF
|
|||
|
||||
local nvim_lsp = require('lspconfig')
|
||||
local capabilities = require('cmp_nvim_lsp').default_capabilities()
|
||||
local servers = { "r_language_server", "tsserver" }
|
||||
local servers = { "r_language_server", "tsserver", "astro", "texlab" }
|
||||
for _, lsp in ipairs(servers) do
|
||||
nvim_lsp[lsp].setup {
|
||||
on_attach = on_attach,
|
||||
flags = {
|
||||
debounce_text_changes = 150,
|
||||
debounce_text_changes = 1000,
|
||||
},
|
||||
capabilities = capabilities
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ let
|
|||
blindtext
|
||||
changepage
|
||||
csquotes
|
||||
currfile
|
||||
dashrule
|
||||
enotez
|
||||
enumitem
|
||||
|
|
@ -32,6 +33,7 @@ let
|
|||
pdfcol
|
||||
pdfpages
|
||||
pgf
|
||||
qrcode
|
||||
scheme-medium
|
||||
sourcesanspro
|
||||
stringstrings
|
||||
|
|
@ -59,6 +61,7 @@ let
|
|||
in
|
||||
{ # home-manager
|
||||
home.packages = with pkgs; [
|
||||
texlab
|
||||
tex
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -96,11 +96,12 @@
|
|||
|
||||
services = {
|
||||
dbus.enable = true;
|
||||
openssh.enable = true;
|
||||
fwupd.enable = true;
|
||||
printing.enable = true;
|
||||
mullvad-vpn.enable = true;
|
||||
mullvad-vpn.package = pkgs.mullvad-vpn;
|
||||
ntp.enable = true;
|
||||
openssh.enable = true;
|
||||
printing.enable = true;
|
||||
};
|
||||
|
||||
virtualisation.libvirtd.enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue