24 lines
559 B
Lua
24 lines
559 B
Lua
return {
|
|
-- You can also add new plugins here as well:
|
|
-- Add plugins, the lazy syntax
|
|
-- "andweeb/presence.nvim",
|
|
-- {
|
|
-- "ray-x/lsp_signature.nvim",
|
|
-- event = "BufRead",
|
|
-- config = function()
|
|
-- 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,
|
|
},
|
|
}
|