mirror of
https://git.aramjonghu.dev/AramJonghu/nvim.git
synced 2026-09-01 15:43:29 +02:00
11 lines
234 B
Lua
11 lines
234 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 {}
|