summaryrefslogtreecommitdiff
path: root/zed.sample.settings.json
diff options
context:
space:
mode:
authorIndrajith K L2025-11-03 23:58:09 +0530
committerGitHub2025-11-03 23:58:09 +0530
commitbe845bf9386884db40437810759986175efc79b6 (patch)
tree16cdf1b70464af82504ac7d9ca099750d1e774fb /zed.sample.settings.json
parent04d4948fcb52cbf5ef34ffb1aa220b6f2a6ec499 (diff)
parentf543450459bc2309e01df70073f30dcf7038b170 (diff)
downloadreilua-enhanced-be845bf9386884db40437810759986175efc79b6.tar.gz
reilua-enhanced-be845bf9386884db40437810759986175efc79b6.tar.bz2
reilua-enhanced-be845bf9386884db40437810759986175efc79b6.zip
Merge pull request #5 from cooljith91112/chore/editor-settings
Add Zed editor configuration sample
Diffstat (limited to 'zed.sample.settings.json')
-rw-r--r--zed.sample.settings.json32
1 files changed, 32 insertions, 0 deletions
diff --git a/zed.sample.settings.json b/zed.sample.settings.json
new file mode 100644
index 0000000..9c96424
--- /dev/null
+++ b/zed.sample.settings.json
@@ -0,0 +1,32 @@
+{
+ "inlay_hints": {
+ "enabled": true
+ },
+ "lsp": {
+ "lua-language-server": {
+ "settings": {
+ "Lua.runtime.version": "Lua 5.4",
+ "Lua.workspace.library": [
+ "."
+ ],
+ "Lua.completion.enable": true,
+ "Lua.completion.callSnippet": "Replace",
+ "Lua.completion.displayContext": 3,
+ "Lua.diagnostics.globals": [
+ "RL"
+ ],
+ "Lua.hint.enable": true,
+ "Lua.hint.paramName": "All",
+ "Lua.hint.setType": true,
+ "Lua.hint.paramType": true,
+ "Lua.diagnostics.disable": [
+ "lowercase-global",
+ "unused-local",
+ "duplicate-set-field",
+ "missing-fields",
+ "undefined-field"
+ ]
+ }
+ }
+ }
+}