fix: fix cannot coerce null to a string when noice or notify-nvim not enabled

This commit is contained in:
Michał 2023-03-31 22:37:24 +02:00 committed by NotAShelf
parent e74578b84c
commit 17e6fe5150
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22

View file

@ -101,13 +101,13 @@ in {
${
if config.vim.ui.noice.enable
then "telescope.load_extension('noice')"
else null
else ""
}
${
if config.vim.notify.nvim-notify.enable
then "telescope.load_extension('notify')"
else null
else ""
}
'';
};