summaryrefslogtreecommitdiff
path: root/fnl/config/project.fnl
blob: a7bcb8240a3c52ac1a2a457a9bd4ac7ecbbce828 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;; Provides project management.
(module config.project {autoload {util config.util}})

(def- opts {:active true
            :on_config_done nil
            :manual_mode false
            :detection_methods [:patterns]
            :patterns [:git :_darcs :.hg :.bzr :.svn :Makefile :package.json]
            :show_hidden false
            :silent_chdir true
            :ignore_lsp {}
            :datapath (vim.fn.stdpath :data)})

(util.setup :project_nvim opts)

(let [telescope (require :telescope)]
  (telescope.load_extension :projects))