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/options.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 'lua/config/options.lua')
| -rw-r--r-- | lua/config/options.lua | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/lua/config/options.lua b/lua/config/options.lua index 2906c62..1cacdeb 100644 --- a/lua/config/options.lua +++ b/lua/config/options.lua @@ -4,18 +4,18 @@ vim.g.maplocalleader = "," -- Setup clipboard on Wayland if os.getenv("WAYLAND_DISPLAY") and vim.fn.exepath("wl-copy") ~= "" then - vim.g.clipboard = { - name = "wl-clipboard", - copy = { - ["+"] = "wl-copy", - ["*"] = "wl-copy", - }, - paste = { - ["+"] = "wl-paste", - ["*"] = "wl-paste", - }, - cache_enabled = 1, - } + vim.g.clipboard = { + name = "wl-clipboard", + copy = { + ["+"] = "wl-copy", + ["*"] = "wl-copy", + }, + paste = { + ["+"] = "wl-paste", + ["*"] = "wl-paste", + }, + cache_enabled = 1, + } end -- Terminal colors |
