mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
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:
commit
86503360d4
1 changed files with 2 additions and 2 deletions
|
@ -101,13 +101,13 @@ in {
|
||||||
${
|
${
|
||||||
if config.vim.ui.noice.enable
|
if config.vim.ui.noice.enable
|
||||||
then "telescope.load_extension('noice')"
|
then "telescope.load_extension('noice')"
|
||||||
else null
|
else ""
|
||||||
}
|
}
|
||||||
|
|
||||||
${
|
${
|
||||||
if config.vim.notify.nvim-notify.enable
|
if config.vim.notify.nvim-notify.enable
|
||||||
then "telescope.load_extension('notify')"
|
then "telescope.load_extension('notify')"
|
||||||
else null
|
else ""
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue