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.

19 lines
516 B

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