Skip to content

Commit

Permalink
Fix Lua table syntax for neovim config (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-rushakoff authored Nov 15, 2024
1 parent 543a7f4 commit 0fb3fca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions content/zls/editors/vim/nvim-lspconfig.smd
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ lspconfig.zls.setup {
--
-- Further information about build-on save:
-- https://zigtools.org/zls/guides/build-on-save/
-- enable_build_on_save: true,
-- enable_build_on_save = true,

-- omit the following line if `zig` is in your PATH
zig_exe_path: '/path/to/zig_executable'
zig_exe_path = '/path/to/zig_executable'
}
}
}
Expand Down Expand Up @@ -108,10 +108,10 @@ autocmd BufWritePre *.zig,*.zon lua vim.lsp.buf.format()
--
-- Further information about build-on save:
-- https://zigtools.org/zls/guides/build-on-save/
-- enable_build_on_save: true,
-- enable_build_on_save = true,

-- omit the following line if `zig` is in your PATH
zig_exe_path: '/path/to/zig_executable'
zig_exe_path = '/path/to/zig_executable'
}
}
}
Expand Down

0 comments on commit 0fb3fca

Please sign in to comment.