From a9ecbd283d12dc3a337abfd85a5c331b9f406f36 Mon Sep 17 00:00:00 2001 From: Takumi Akimoto <81888693+akimon658@users.noreply.github.com> Date: Mon, 9 Feb 2026 16:23:52 +0900 Subject: [PATCH] Add .luarc.json --- home-manager/nvim/.luarc.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 home-manager/nvim/.luarc.json diff --git a/home-manager/nvim/.luarc.json b/home-manager/nvim/.luarc.json new file mode 100644 index 0000000..d7d0741 --- /dev/null +++ b/home-manager/nvim/.luarc.json @@ -0,0 +1,17 @@ +{ + "$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json", + "format": { + "defaultConfig": { + "call_arg_parentheses": "remove", + "quote_style": "double", + "trailing_table_separator": "smart" + } + }, + "workspace": { + "library": [ + "~/.nix-profile/share/nvim/runtime/lua", + "~/.config/nvim/lua", + "~/.local/share/nvim/lazy" + ] + } +} -- 2.51.2