Added rooter plugin

This commit is contained in:
Christoffer Martinsson 2023-05-27 04:15:53 +02:00
parent 9d9aeccae7
commit d00790a15a

View File

@ -9,4 +9,15 @@ return {
-- require("lsp_signature").setup()
-- end,
-- },
{
"notjedi/nvim-rooter.lua",
event = "UIEnter",
config = function()
require("nvim-rooter").setup {
rooter_patterns = { "compile_commands.json", ".git", ".hg", ".svn" },
trigger_patterns = { "*" },
manual = false,
}
end,
},
}