mirror of
https://git.aramjonghu.nl/AramJonghu/nvim.git
synced 2026-06-07 00:48:24 +02:00
15 lines
258 B
Lua
15 lines
258 B
Lua
if not vim.F then
|
|
vim.F = {}
|
|
end
|
|
|
|
if not vim.F.if_nil and not vim.nonnil then
|
|
vim.F.if_nil = function(value, default)
|
|
if value == nil then
|
|
return default
|
|
end
|
|
return value
|
|
end
|
|
end
|
|
|
|
require("telescope").setup {}
|