Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Latest commit

 

History

History
45 lines (35 loc) · 1.21 KB

README.md

File metadata and controls

45 lines (35 loc) · 1.21 KB

zellij.nvim

Archived!

Please try to use migrate to an alternative, if you are using this plugin. I do not use zellij and this plugin is essentially a proof of concept that you could seamlessly navigate between neovim and zellij.

Read more here

neovim integration with zellij

Features

  • :ZellijNavigate<Left|Right|Down|Up>
  • :ZellijNewPane
  • :ZellijNewTab
  • :ZellijRenamePane
  • :ZellijRenameTab

For vim-tmux-navigator compatibility, use the vimTmuxNavigatorKeybinds prop during setup.

use {
    'Lilja/zellij.nvim',
    -- If you want to configure the plugin
    --[[
    config = function()
        require('zellij').setup({})
    end
    ]]
}

Options

{
    -- keys with designated default values.
    path = "zellij", -- Zellij binary path
    replaceVimWindowNavigationKeybinds = false, -- Will set keybinds like <C-w>h to left
    vimTmuxNavigatorKeybinds = false, -- Will set keybinds like <C-h> to left
    debug = false, -- Will log things to /tmp/zellij.nvim
}