瀏覽代碼

fix(telescope): backwards compability (#3596)

* fix(telescope): no more errors if theme is nil

* fix: backwards compability
LostNeophyte 2 年之前
父節點
當前提交
38587e2241
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      lua/lvim/core/telescope.lua

+ 2 - 2
lua/lvim/core/telescope.lua

@@ -31,7 +31,7 @@ function M.config()
       selection_strategy = "reset",
       sorting_strategy = nil,
       layout_strategy = nil,
-      layout_config = nil,
+      layout_config = {},
       vimgrep_arguments = {
         "rg",
         "--color=never",
@@ -127,7 +127,7 @@ function M.setup()
 
   local telescope = require "telescope"
 
-  local theme = require("telescope.themes")["get_" .. lvim.builtin.telescope.theme]
+  local theme = require("telescope.themes")["get_" .. (lvim.builtin.telescope.theme or "")]
   if theme then
     lvim.builtin.telescope.defaults = theme(lvim.builtin.telescope.defaults)
   end