diff options
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 |