mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
fix: fix cannot coerce null to a string when noice or notify-nvim not enabled
This commit is contained in:
parent
2899981c1e
commit
9c778ae224
1 changed files with 2 additions and 2 deletions
|
@ -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 ""
|
||||
}
|
||||
'';
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue