diff options
author | Ahmed Khalf <[email protected]> | 2021-08-18 09:34:26 +0400 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-18 01:34:26 -0400 |
commit | b9b9c69615b469146e3cc75adcf9bd61047404eb (patch) | |
tree | e6b3ea906e1c1d2c6710deec6e16ae5f01799713 /lua/default-config.lua | |
parent | 21b621c95af592d0da46a29fe4dcc02e5d16c6eb (diff) |
[Refactor]: Remove vim-rooter and smart-cwd; then use project.nvim (#1315)
* Replace vim-rooter with project.nvim
* Implement stylua format
* Remove smart_cwd
* Implicitly update nvim-tree dir when project active
* Link datapath to cache
* Fix stylua
* Fix lint
* Fix telescope bug
* Fix telescope dependency
* Fix telescope once and for all
* Fix telescope once again
Diffstat (limited to 'lua/default-config.lua')
-rw-r--r-- | lua/default-config.lua | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lua/default-config.lua b/lua/default-config.lua index ed9b17d6..f381b0b6 100644 --- a/lua/default-config.lua +++ b/lua/default-config.lua @@ -26,7 +26,7 @@ lvim = { gitsigns = {}, which_key = {}, comment = {}, - rooter = {}, + project = {}, galaxyline = {}, bufferline = {}, dap = {}, @@ -102,8 +102,6 @@ lvim = { popup_border = "single", on_attach_callback = nil, on_init_callback = nil, - ---@usage query the project directory from the language server and use it to set the CWD - smart_cwd = true, null_ls = { setup = {}, }, @@ -1301,7 +1299,7 @@ require("core.terminal").config() require("core.telescope").config() require("core.treesitter").config() require("core.nvimtree").config() -require("core.rooter").config() +require("core.project").config() require("core.bufferline").config() require("core.autopairs").config() require("core.comment").config() |