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", lazy = false, }, { "wakatime/vim-wakatime", enabled = wakatime_enabled, lazy = false }, { "Wansmer/sibling-swap.nvim", lazy = false, opts = { use_default_keymaps = false, } } }