utility/preview: cleanup and optionalString

This commit is contained in:
Donnerinoern 2024-02-13 15:45:47 +01:00
parent 319aaca06d
commit 2e07763149
7 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
_: {
{
imports = [
./markdown-preview
./glow

View File

@ -16,13 +16,13 @@ in {
vim.startPlugins = ["glow-nvim"];
vim.maps.normal = mkMerge [
(mkBinding cfg.glow.mappings.openPreview ":Glow<CR>" mappings.openPreview.description)
(mkBinding cfg.mappings.openPreview ":Glow<CR>" mappings.openPreview.description)
];
vim.luaConfigRC.glow = nvim.dag.entryAnywhere ''
require('glow').setup({
glow_path = "${pkgs.glow}/bin/glow"
});
glow_path = "${pkgs.glow}/bin/glow"
});
'';
};
}

View File

@ -1,4 +1,4 @@
_: {
{
imports = [
./glow.nix
./config.nix

View File

@ -3,7 +3,7 @@
in {
options.vim.utility.preview = {
glow = {
enable = mkEnableOption "enable markdown preview in neovim with glow";
enable = mkEnableOption "markdown preview in neovim with glow";
mappings = {
openPreview = mkMappingOption "Open preview" "<leader>p";
};

View File

@ -4,7 +4,7 @@
lib,
...
}: let
inherit (lib) nvim mkIf mkMerge concatMapStringsSep;
inherit (lib) nvim mkIf concatMapStringsSep optionalString stringLength;
inherit (nvim.vim) mkVimBool;
cfg = config.vim.utility.preview.markdownPreview;
@ -19,8 +19,8 @@ in {
let g:mkdp_filetypes = [${concatMapStringsSep ", " (x: "'" + x + "'") cfg.filetypes}]
let g:mkdp_command_for_global = ${mkVimBool cfg.alwaysAllowPreview}
let g:mkdp_open_to_the_world = ${mkVimBool cfg.broadcastServer}
let g:mkdp_open_ip = '${cfg.customIP}'
let g:mkdp_port = '${cfg.customPort}'
${optionalString (stringLength cfg.customIP > 0) "let g:mkdp_open_ip = '${cfg.customIP}'"}
${optionalString (stringLength cfg.customPort > 0) "let g:mkdp_port = '${cfg.customPort}'"}
'';
};
}

View File

@ -1,4 +1,4 @@
_: {
{
imports = [
./markdown-preview.nix
./config.nix

View File

@ -3,7 +3,7 @@
in {
options.vim.utility.preview = {
markdownPreview = {
enable = mkEnableOption "enable Markdown preview in neovim with markdown-preview.nvim";
enable = mkEnableOption "Markdown preview in neovim with markdown-preview.nvim";
autoStart = mkOption {
type = types.bool;