Merge pull request #33 from n3oney/patch-2

fix: cannot coerce null to a string when noice or notify-nvim not enabled
This commit is contained in:
NotAShelf 2023-03-31 23:43:58 +03:00 committed by GitHub
commit 86503360d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 ""
}
'';
};