inital commit

This commit is contained in:
2022-12-19 15:52:56 -07:00
commit 699efee232
20 changed files with 819 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
local M = {}
function M.setup()
local actions = require "telescope.actions"
local telescope = require "telescope"
telescope.load_extension "fzf"
telescope.load_extension "project"
telescope.load_extension "repo"
telescope.load_extension "file_browser"
telescope.load_extension "projects"
end
return M