dotfiles/nvim/.config/nvim/after/ftplugin/scheme.lua
Sanchayan Maity 110a1643cb
nvim: Move LSP configuration to it's own LSP utils
This allows us to have all the language server configuration in one
place and only import relevant LSP server configuration to pass to
vim.lsp.start in after/ftplugin.

While at it, we also enable deno support.
2023-02-28 20:56:36 +05:30

5 lines
121 B
Lua

local lsp_utils = require('lsp-utils')
local scheme_config = lsp_utils.scheme_config()
vim.lsp.start(scheme_config)