From 43c05553ff68f16de2979ba3e2751c6221d9092c Mon Sep 17 00:00:00 2001 From: tristan Date: Tue, 10 Dec 2024 14:57:13 +0000 Subject: [PATCH] add zed, yt music, element-desktop, codesnap --- home/programs/graphical.nix | 7 +++++++ lib/nixvim.nix | 11 +++++++++++ 2 files changed, 18 insertions(+) diff --git a/home/programs/graphical.nix b/home/programs/graphical.nix index a53e427..b174cfb 100644 --- a/home/programs/graphical.nix +++ b/home/programs/graphical.nix @@ -18,14 +18,21 @@ gimp libreoffice dbeaver-bin + zed-editor # entertainment libsForQt5.kasts shortwave freetube + youtube-music # other element-desktop-wayland + (makeDesktopItem { + name = "element-desktop-wayland"; + desktopName = "Element"; + exec = "${element-desktop-wayland}/bin/element-desktop"; + }) brave bitwarden ]; diff --git a/lib/nixvim.nix b/lib/nixvim.nix index 106837f..e6fdace 100644 --- a/lib/nixvim.nix +++ b/lib/nixvim.nix @@ -395,5 +395,16 @@ in { }; ts-autotag.enable = true; guess-indent.enable = true; + + codesnap = { + enable = true; + settings = { + has_line_number = true; + mac_window_bar = false; + save_path = "~/Pictures/Screenshots/"; + watermark = ""; + bg_padding = 5; + }; + }; }; }