update vim config
This commit is contained in:
parent
757921be5b
commit
953985a3ea
2 changed files with 11 additions and 0 deletions
|
@ -16,6 +16,13 @@ lspconfig.gopls.setup {
|
|||
},
|
||||
}
|
||||
|
||||
-- ruby LSP
|
||||
lspconfig.ruby_lsp.setup({
|
||||
cmd = { "ruby-lsp" }, -- or provide full path if needed
|
||||
filetypes = { "ruby" },
|
||||
root_dir = lspconfig.util.root_pattern("Gemfile", ".git"),
|
||||
})
|
||||
|
||||
-- Completion
|
||||
local cmp = require("cmp")
|
||||
cmp.setup({
|
||||
|
|
4
install
4
install
|
@ -1,5 +1,9 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# TODO: Packages that need to be added
|
||||
# gem install ruby-lsp
|
||||
|
||||
#
|
||||
# ./install --system --forced
|
||||
# --forced (not forced, does not delete old version, just ends in failure)
|
||||
# --system (refault user)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue