aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dot_config/nvim/lua/plugins/init.lua
diff options
context:
space:
mode:
authorLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-04-21 01:24:36 +0100
committerLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-04-21 01:24:36 +0100
commit4260b23f59752ca9e88161f649285da3cce82982 (patch)
treea4670b66f61ef493c846f61e315c8e5967726974 /dot_config/nvim/lua/plugins/init.lua
parentd029bb7b934c9ebe0ef82f159cd7332715860ec3 (diff)
downloaddotfiles-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.lua28
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 = {