You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
395 B

  1. return {
  2. "aserowy/tmux.nvim",
  3. event = "VeryLazy",
  4. config = function()
  5. require("tmux").setup({
  6. copy_sync = {
  7. enable = false,
  8. },
  9. navigation = {
  10. cycle_navigation = true,
  11. enable_default_keybindings = true,
  12. persist_zoom = true,
  13. },
  14. resize = {
  15. -- enables default keybindings (A-hjkl) for normal mode
  16. enable_default_keybindings = false,
  17. },
  18. })
  19. end,
  20. }