summaryrefslogtreecommitdiffstats
path: root/dotfiles/vim-dev.lua
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/vim-dev.lua')
-rw-r--r--dotfiles/vim-dev.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/dotfiles/vim-dev.lua b/dotfiles/vim-dev.lua
index ae74e91..126b615 100644
--- a/dotfiles/vim-dev.lua
+++ b/dotfiles/vim-dev.lua
@@ -57,3 +57,12 @@ require("rust-tools").setup {
57 on_attach = on_attach, 57 on_attach = on_attach,
58 } 58 }
59} 59}
60
61require("nlua.lsp.nvim").setup(require('lspconfig'), {
62 cmd = {
63 string.format("%s/bin/lua-language-server", vim.g.sumneko_lua_base_path),
64 "-E",
65 string.format("%s/extras/main.lua", vim.g.sumneko_lua_base_path),
66 },
67 on_attach = on_attach,
68})