27 lines
495 B
Lua
27 lines
495 B
Lua
local wakatime_enabled = false
|
|
if os.getenv "WAKATIME_API_KEY" then wakatime_enabled = true end
|
|
|
|
-- You can also add or configure plugins by creating files in this `plugins/` folder
|
|
-- Here are some examples:
|
|
|
|
---@type LazySpec
|
|
return {
|
|
{
|
|
"apple/pkl-neovim",
|
|
lazy = false,
|
|
},
|
|
|
|
{
|
|
"wakatime/vim-wakatime",
|
|
enabled = wakatime_enabled,
|
|
lazy = false,
|
|
},
|
|
|
|
{
|
|
"Wansmer/sibling-swap.nvim",
|
|
lazy = false,
|
|
opts = {
|
|
use_default_keymaps = false,
|
|
},
|
|
},
|
|
}
|