diff options
author | 2025-03-29 20:32:06 +0300 | |
---|---|---|
committer | 2025-03-29 20:32:06 +0300 | |
commit | b32f57d7d805c6f46df4c7790d658c48375c18a6 (patch) | |
tree | f5764ddf850b9e9e07e25eb104d6d055d8397f6a /lua/config/plugins/extra.lua | |
parent | feat: add `stylua` as Lua formatter (diff) | |
download | neovim-configuration-b32f57d7d805c6f46df4c7790d658c48375c18a6.tar.gz neovim-configuration-b32f57d7d805c6f46df4c7790d658c48375c18a6.tar.bz2 neovim-configuration-b32f57d7d805c6f46df4c7790d658c48375c18a6.tar.lz neovim-configuration-b32f57d7d805c6f46df4c7790d658c48375c18a6.tar.xz neovim-configuration-b32f57d7d805c6f46df4c7790d658c48375c18a6.tar.zst neovim-configuration-b32f57d7d805c6f46df4c7790d658c48375c18a6.zip |
style: format all `.lua` files with Stylua
Diffstat (limited to '')
-rw-r--r-- | lua/config/plugins/extra.lua | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/lua/config/plugins/extra.lua b/lua/config/plugins/extra.lua index d12e690..d1e1a4e 100644 --- a/lua/config/plugins/extra.lua +++ b/lua/config/plugins/extra.lua @@ -1,16 +1,16 @@ return { - { - "which-key.nvim", - event = "DeferredUIEnter", - after = function(_) - require("which-key").setup() + { + "which-key.nvim", + event = "DeferredUIEnter", + after = function(_) + require("which-key").setup() - require("which-key").add({ - { "<leader>g", group = "git" }, - { "<leader>gh", group = "hunk" }, - { "<leader>s", group = "search" }, - { "<leader>S", group = "surround" }, - }) - end, - }, + require("which-key").add({ + { "<leader>g", group = "git" }, + { "<leader>gh", group = "hunk" }, + { "<leader>s", group = "search" }, + { "<leader>S", group = "surround" }, + }) + end, + }, } |