ghostwriter config

This commit is contained in:
Daniel Langbein 2023-10-06 12:04:48 +02:00
parent 0278b5f140
commit bbe1dcb23d
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
6 changed files with 38 additions and 1 deletions

View File

@ -46,6 +46,7 @@ in
#../../modules/firefox.nix #../../modules/firefox.nix
#../../modules/thunderbird.nix #../../modules/thunderbird.nix
#../../modules/digikam-rawtherapee.nix #../../modules/digikam-rawtherapee.nix
#../../modules/ghostwriter.nix
#../../modules/android.nix #../../modules/android.nix
#../../modules/podman.nix #../../modules/podman.nix
../../modules/docker.nix ../../modules/docker.nix

View File

@ -45,6 +45,7 @@ in
../../modules/firefox.nix ../../modules/firefox.nix
../../modules/thunderbird.nix ../../modules/thunderbird.nix
#../../modules/digikam-rawtherapee.nix #../../modules/digikam-rawtherapee.nix
../../modules/ghostwriter.nix
#../../modules/android.nix #../../modules/android.nix
#../../modules/podman.nix #../../modules/podman.nix
#../../modules/docker.nix #../../modules/docker.nix

View File

@ -45,6 +45,7 @@ in
../../modules/firefox.nix ../../modules/firefox.nix
../../modules/thunderbird.nix ../../modules/thunderbird.nix
../../modules/digikam-rawtherapee.nix ../../modules/digikam-rawtherapee.nix
../../modules/ghostwriter.nix
../../modules/android.nix ../../modules/android.nix
#../../modules/podman.nix #../../modules/podman.nix
../../modules/docker.nix ../../modules/docker.nix

View File

@ -46,6 +46,7 @@ in
#../../modules/firefox.nix #../../modules/firefox.nix
#../../modules/thunderbird.nix #../../modules/thunderbird.nix
#../../modules/digikam-rawtherapee.nix #../../modules/digikam-rawtherapee.nix
#../../modules/ghostwriter.nix
#../../modules/android.nix #../../modules/android.nix
#../../modules/podman.nix #../../modules/podman.nix
../../modules/docker.nix ../../modules/docker.nix

34
modules/ghostwriter.nix Normal file
View File

@ -0,0 +1,34 @@
{ config, pkgs, ... }:
{
users.users.yoda = {
packages = with pkgs; [
libsForQt5.ghostwriter # Markdown editor
];
};
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
home.file.".config/kde.org/ghostwriter.conf" = {
text = ''
[Application]
locale=en_US
[Preview]
htmlPreviewOpen=false
lastUsedExporter=cmark-gfm
lastUsedExporterParams=
[Save]
autoSave=false
backupFile=false
[Style]
largeHeadings=true
[Tabs]
insertSpacesForTabs=true
tabWidth=2
'';
};
};
}

View File

@ -57,7 +57,6 @@
then jetbrains.idea-ultimate then jetbrains.idea-ultimate
else jetbrains.idea-community else jetbrains.idea-community
) )
libsForQt5.ghostwriter # Markdown editor
transmission-gtk # BitTorrent client transmission-gtk # BitTorrent client
meld # Diff and merge tool meld # Diff and merge tool
handbrake # Rip DVD and Blu-ray; rotate and export videos handbrake # Rip DVD and Blu-ray; rotate and export videos