diff options
| author | 2026-04-21 01:24:36 +0100 | |
|---|---|---|
| committer | 2026-04-21 01:24:36 +0100 | |
| commit | 4260b23f59752ca9e88161f649285da3cce82982 (patch) | |
| tree | a4670b66f61ef493c846f61e315c8e5967726974 /dot_config/nvim/lua/plugins/init.lua | |
| parent | d029bb7b934c9ebe0ef82f159cd7332715860ec3 (diff) | |
| download | dotfiles-4260b23f59752ca9e88161f649285da3cce82982.tar.gz dotfiles-4260b23f59752ca9e88161f649285da3cce82982.tar.bz2 dotfiles-4260b23f59752ca9e88161f649285da3cce82982.zip | |
style(lua): apply stylua formatting
Diffstat (limited to 'dot_config/nvim/lua/plugins/init.lua')
| -rw-r--r-- | dot_config/nvim/lua/plugins/init.lua | 28 |
1 files changed, 24 insertions, 4 deletions
diff --git a/dot_config/nvim/lua/plugins/init.lua b/dot_config/nvim/lua/plugins/init.lua index b106b6e..24eb70d 100644 --- a/dot_config/nvim/lua/plugins/init.lua +++ b/dot_config/nvim/lua/plugins/init.lua @@ -1,9 +1,29 @@ -- Seamless navigation between neovim splits and zellij panes require("smart-splits").setup({}) -vim.keymap.set("n", "<C-h>", require("smart-splits").move_cursor_left, { desc = "Move to left split/pane" }) -vim.keymap.set("n", "<C-j>", require("smart-splits").move_cursor_down, { desc = "Move to below split/pane" }) -vim.keymap.set("n", "<C-k>", require("smart-splits").move_cursor_up, { desc = "Move to above split/pane" }) -vim.keymap.set("n", "<C-l>", require("smart-splits").move_cursor_right, { desc = "Move to right split/pane" }) +vim.keymap.set( + "n", + "<C-h>", + require("smart-splits").move_cursor_left, + { desc = "Move to left split/pane" } +) +vim.keymap.set( + "n", + "<C-j>", + require("smart-splits").move_cursor_down, + { desc = "Move to below split/pane" } +) +vim.keymap.set( + "n", + "<C-k>", + require("smart-splits").move_cursor_up, + { desc = "Move to above split/pane" } +) +vim.keymap.set( + "n", + "<C-l>", + require("smart-splits").move_cursor_right, + { desc = "Move to right split/pane" } +) require("which-key").setup({ spec = { |
