Linux configuration stuffs
at main 29 lines 816 B view raw
1return { 2 'iamt4nk/smm.nvim', 3 dependencies = { 4 "nvim-lua/plenary.nvim", 5 "nvim-telescope/telescope.nvim", 6 }, 7 config = { 8 premium = true, 9 icons = true, 10 11 spotify = { 12 api_retry_max = 3, 13 api_retry_backoff = 2000, 14 15 auth = { 16 client_id = "171a225176894d5986df534d8ec951b6", 17 callback_url = "http://localhost", 18 callback_port = 4202, 19 } 20 } 21 }, 22 keys = { 23 { "<leader>ss", "<CMD>Spotify<CR>", desc = "Show Spotify" }, 24 { "<leader>sp", "<CMD>Spotify prev<CR>", desc = "Previous Song (spotify)" }, 25 { "<leader>sn", "<CMD>Spotify next<CR>", desc = "Next Song (spotify)" }, 26 { "<leader>sR", "<CMD>Spotify repeat<CR>", desc = "Toggle Repeat (spotify)" }, 27 { "<leader>sS", "<CMD>Spotify shuffle<CR>", desc = "Toggle Shuffle (spotify)" } 28 } 29}