.dotfiles/.config/astronvim/lua/user/plugins/user.lua

25 lines
490 B
Lua

local wakatime_enabled = false
if os.getenv("WAKATIME_API_KEY") then
wakatime_enabled = true
end
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,
-- },
"apple/pkl-neovim",
{
"wakatime/vim-wakatime",
enabled = wakatime_enabled,
lazy = false
}
}