blob: 1617ca524ced0ee1118118d37e8ee76d7ca767b8 (
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)
|