diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2024-02-04 00:59:38 +0000 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2024-02-04 00:59:38 +0000 |
| commit | aa7fda0d54adecb4f67d5e4cf92aae3869599edd (patch) | |
| tree | b301c09e1ec857d9fb750668f7aaa7722cbaa822 | |
| parent | 20be0fdeca14a676e33de8e841bdfa1671a0c785 (diff) | |
| download | nvim-config-master.tar.gz nvim-config-master.tar.xz | |
| -rw-r--r-- | after/plugin/lsp.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/after/plugin/lsp.lua b/after/plugin/lsp.lua index 8ed5a00..bd87f87 100644 --- a/after/plugin/lsp.lua +++ b/after/plugin/lsp.lua @@ -3,8 +3,6 @@ local lsp = require("lsp-zero") lsp.preset("recommended") local language_servers = { - 'tsserver', - 'eslint', 'gopls', } @@ -12,6 +10,8 @@ local linux_language_servers = { 'lua_ls', 'rust_analyzer', 'clangd', + 'tsserver', + 'eslint', } if io.popen("uname"):read("*a") == "Linux" then |
