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

(local 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)})

{1 :ahmedkhalf/project.nvim
 :cmd :Telescope
 :config (fn []
           (let [project (require :project_nvim)]
             (project.setup opts)))}