diff options
| author | christianchiarulli <chrisatmachine@gmail.com> | 2021-12-14 17:48:34 -0500 |
|---|---|---|
| committer | christianchiarulli <chrisatmachine@gmail.com> | 2021-12-14 17:48:34 -0500 |
| commit | 0116a44ec810e9fdd05b2a6a838a550e98eda8b3 (patch) | |
| tree | 0477c551f76cb019c5a095c9bc81c28d65fb0d0b /lua/user/lsp/init.lua | |
| parent | 34d51603f03f4554a71d6c8bb550617ba503505c (diff) | |
add LSP
Diffstat (limited to 'lua/user/lsp/init.lua')
| -rw-r--r-- | lua/user/lsp/init.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lua/user/lsp/init.lua b/lua/user/lsp/init.lua new file mode 100644 index 0000000..a62e7aa --- /dev/null +++ b/lua/user/lsp/init.lua @@ -0,0 +1,7 @@ +local status_ok, _ = pcall(require, "lspconfig") +if not status_ok then + return +end + +require("user.lsp.lsp-installer") +require("user.lsp.handlers").setup() |
