summaryrefslogtreecommitdiff
path: root/fnl/config/project.fnl
blob: 1c97527ae06653b8126a4f7e411b9af73966ec87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
;; 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)