mirror of
https://github.com/ivuorinen/astronvim_config.git
synced 2026-01-26 03:14:06 +00:00
16 lines
322 B
Lua
16 lines
322 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,
|
|
},
|
|
{
|
|
"wakatime/vim-wakatime",
|
|
lazy = false,
|
|
enabled = true,
|
|
},
|
|
}
|