From c033c641354acda55f29e81e0a1057a4030b52ef Mon Sep 17 00:00:00 2001 From: Till Date: Thu, 15 May 2025 17:22:04 +0200 Subject: [PATCH] woof, markdown --- flake.nix | 1 - home/castget/castget.conf | 40 +++++++++++++++++++++------------------ home/fish.nix | 3 ++- home/nvim/default.nix | 20 +++++++++----------- home/nvim/lsp.vim | 2 +- 5 files changed, 34 insertions(+), 32 deletions(-) diff --git a/flake.nix b/flake.nix index 761a0e9..df0aa1b 100644 --- a/flake.nix +++ b/flake.nix @@ -22,7 +22,6 @@ ./system/desktop.nix ./system/hardware/nova.nix ./system/gnome.nix - ./system/sway.nix ./system/steam.nix ./system/btrbk.nix ./system/yubikey.nix diff --git a/home/castget/castget.conf b/home/castget/castget.conf index 0b9d87a..c582077 100644 --- a/home/castget/castget.conf +++ b/home/castget/castget.conf @@ -1,27 +1,38 @@ # vim: set ft=conf -[drei90] -url=http://feeds.feedburner.com/Drei90 -id3album=drei90 +[2.5admins] +url=https://2.5admins.com/feed/podcast [50plus2] url=https://50plus2.podigee.io/feed/mp3 id3album=50+2 +[drei90] +url=http://feeds.feedburner.com/Drei90 +id3album=drei90 + +[drei90ff] +url=https://www.patreon.com/rss/drei90funfriends?auth=QZZ89bFPYjO2_AJjzY_R5meWlz8EGJzX&show=864941 +id3album=drei90ff + +[efpodcast] +url=https://www.eintracht-podcast.de/feed/mp3 + [latenightlinux] url=https://latenightlinux.com/feed/mp3 -[linuxdevtime] -url=https://latenightlinux.com/feed/extra - [linuxafterdark] url=https://linuxafterdark.net/feed/podcast +[linuxdevtime] +url=https://latenightlinux.com/feed/extra + [linuxmatters] url=https://linuxmatters.sh/episode/index.xml -[2.5admins] -url=https://2.5admins.com/feed/podcast +[logbuchnetzpolitik] +url=https://feeds.metaebene.me/lnp/mp3 +id3album=Logbuch Netzpolitik [schlusskonferenz] url=https://schlusskonferenz.podigee.io/feed/mp3 @@ -33,16 +44,9 @@ url=https://tribuenengespraech.podigee.io/feed/mp3 url=https://www.wett-broetchen.de/feed/mp3 id3album=Wettbrötchen -[efpodcast] -url=https://www.eintracht-podcast.de/feed/mp3 - -# [edeltalk] -# url=https://cdn.julephosting.de/podcasts/573-edeltalk-mit-dominik-kevin/feed.rss -# id3album=Edeltalk - -[logbuchnetzpolitik] -url=https://feeds.metaebene.me/lnp/mp3 -id3album=Logbuch Netzpolitik +[edeltalk] +url=https://cdn.julephosting.de/podcasts/573-edeltalk-mit-dominik-kevin/feed.rss +id3album=Edeltalk [*] id3contenttype=Podcast diff --git a/home/fish.nix b/home/fish.nix index a811b6f..f2fd420 100644 --- a/home/fish.nix +++ b/home/fish.nix @@ -4,9 +4,10 @@ top = "btm --battery"; linkbox = "ln -s (pwd) ~/box/"; rloft = "tmux source-file ~/.config/tmux/rloft.conf"; - liftbox = "ssh tstraube@login.server.uni-frankfurt.de \"rm -r box/*\" && scp -vr ~/box/ tstraube@login.server.uni-frankfurt.de:box/"; + liftbox = "tar czf - -C ~/box/ . | ssh tstraube@login.server.uni-frankfurt.de 'tar xzf - -C ~/box'"; ktiubox = "rsync -vaL --delete ~/box/ root@ktiu.net:/var/www/html/box/"; ymd = "date +'%Y-%m-%d'"; + dmy = "date +'%-d.-%-m.%Y'"; pulluni = "ssh tstraube@login.server.uni-frankfurt.de \"cd uni-tstraube && git pull\""; pullstat = "tar czf - -C ~/teach/2025_statistik/skript/public/ . | ssh tstraube@login.server.uni-frankfurt.de 'tar xzf - -C ~/public_html/c/stat25'"; pullgrid = "ssh till@geocom.uni-frankfurt.de \"cd /var/www/grid && git pull\""; diff --git a/home/nvim/default.nix b/home/nvim/default.nix index 02b1b71..c1ca072 100644 --- a/home/nvim/default.nix +++ b/home/nvim/default.nix @@ -1,25 +1,28 @@ { config, pkgs, ... }: { - home.packages = with pkgs.nodePackages; [ - typescript-language-server + home.packages = with pkgs; [ + nodePackages.typescript-language-server + marksman ]; - programs.neovim = { extraConfig = builtins.readFile ./config.vim; enable = true; defaultEditor = true; plugins = with pkgs.vimPlugins; + let woof = pkgs.vimUtils.buildVimPlugin { name = "woof.vim"; src = builtins.fetchGit { - url = "ssh://git@ktiu.net/home/git/woof.vim/"; + url = "ssh://git@shorbut.ktiu.net/home/git/woof.vim/"; ref = "main"; - rev = "ea2ed3afb7c00a6b1672351e22195c0f8dd5d696"; + rev = "146eca695d0c3901905f4d46d9defd1f624dc193"; }; }; - in [ + in + + [ { plugin = woof; config = '' @@ -56,7 +59,6 @@ \) ''; } - { plugin = goyo; config = '' @@ -65,7 +67,6 @@ nnoremap ]og :Goyo! ''; } - { plugin = limelight-vim; config = '' @@ -76,12 +77,10 @@ nnoremap ]of :Limelight! ''; } - { plugin = nvim-colorizer-lua; config = "lua require 'colorizer'.setup()"; } - { plugin = papercolor-theme; config = '' @@ -89,7 +88,6 @@ colorscheme PaperColor ''; } - typescript-vim { plugin = ultisnips; diff --git a/home/nvim/lsp.vim b/home/nvim/lsp.vim index 0adf222..976e7dc 100644 --- a/home/nvim/lsp.vim +++ b/home/nvim/lsp.vim @@ -69,7 +69,7 @@ lua <