diff options
author | Chris <[email protected]> | 2021-07-02 21:06:08 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-07-02 21:06:08 -0400 |
commit | 703fdfd48d966c8a74085e9d77816fa76070b65a (patch) | |
tree | 0e44e1147e34085e6cc765b00fa12bf546601ae4 | |
parent | 2e1f3ef609de5fb877f0a5235e636ea06e294ce1 (diff) | |
parent | 27f662efa7482bf54c46f41b8fc47a1dd363096f (diff) |
Merge branch 'master' of github.com:ChristianChiarulli/LunarVim into stable
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | ftplugin/typescriptreact.lua | 20 |
2 files changed, 2 insertions, 20 deletions
@@ -110,3 +110,5 @@ cd ~/.config/nvim && git pull - [Twitter](https://twitter.com/chrisatmachine) + + diff --git a/ftplugin/typescriptreact.lua b/ftplugin/typescriptreact.lua index 40c68c51..173f6693 100644 --- a/ftplugin/typescriptreact.lua +++ b/ftplugin/typescriptreact.lua @@ -66,23 +66,3 @@ if O.lang.tsserver.autoformat then }) end vim.cmd("setl ts=2 sw=2") - -local nvim_lsp = require'lspconfig' -local configs = require'lspconfig/configs' -local capabilities = vim.lsp.protocol.make_client_capabilities() -capabilities.textDocument.completion.completionItem.snippetSupport = true - -configs.emmet_ls = { - default_config = { - cmd = {'emmet-ls', '--stdio'}; - filetypes = {'html', 'css', 'javascript', 'javascriptreact', 'typescript', 'typescriptreact'}; - root_dir = function() - return vim.loop.cwd() - end; - settings = {}; - }; -} - -nvim_lsp.emmet_ls.setup{ - -- on_attach = on_attach; -} |