diff options
author | christianchiarulli <[email protected]> | 2021-07-01 23:42:26 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-01 23:42:26 -0400 |
commit | 20ed47e21e966a5b857ef9970ae6171b3a504ce1 (patch) | |
tree | 92bdefc7589545f4429a55b53e4493ad7832e632 /ftplugin/ruby.lua | |
parent | 9bb4f8a085644914c79343b48c808509311ee203 (diff) |
lsp in ftplugin austonautomoy
Diffstat (limited to 'ftplugin/ruby.lua')
-rw-r--r-- | ftplugin/ruby.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ftplugin/ruby.lua b/ftplugin/ruby.lua new file mode 100644 index 00000000..f46a71f8 --- /dev/null +++ b/ftplugin/ruby.lua @@ -0,0 +1,24 @@ +-- If you are using rvm, make sure to change below configuration +require'lspconfig'.solargraph.setup { + cmd = {DATA_PATH .. "/lspinstall/ruby/solargraph/solargraph", "--stdio"}, + on_attach = require'lsp'.common_on_attach, + handlers = { + ["textDocument/publishDiagnostics"] = vim.lsp.with( + vim.lsp.diagnostic.on_publish_diagnostics, { + virtual_text = O.lang.ruby.diagnostics.virtual_text, + signs = O.lang.ruby.diagnostics.signs, + underline = O.lang.ruby.diagnostics.underline, + update_in_insert = true + + }) + }, + filetypes = O.lang.ruby.filetypes +} + +if O.lang.ruby.autoformat then + require('lv-utils').define_augroups({ + _ruby_format = { + {'BufWritePre', '*.rb', 'lua vim.lsp.buf.formatting_sync(nil,1000)'} + } + }) +end |