Created
June 2, 2021 23:46
-
-
Save momofor/354079a735cbc0e498f53736e75b0a5e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local nvim_lsp = require("lspconfig") | |
| nvim_lsp.tsserver.setup { | |
| on_attach = function(client, bufnr) | |
| local ts_utils = require("nvim-lsp-ts-utils") | |
| -- defaults | |
| ts_utils.setup { | |
| debug = false, | |
| disable_commands = false, | |
| enable_import_on_completion = true, | |
| import_on_completion_timeout = 5000, | |
| -- eslint | |
| eslint_enable_code_actions = true, | |
| eslint_bin = "eslint", | |
| eslint_args = {"-f", "json", "--stdin", "--stdin-filename", "$FILENAME"}, | |
| eslint_enable_disable_comments = true, | |
| -- experimental settings! | |
| -- eslint diagnostics | |
| eslint_enable_diagnostics = true, | |
| eslint_diagnostics_debounce = 250, | |
| -- formatting | |
| enable_formatting = true, | |
| formatter = "prettier", | |
| formatter_args = {"--stdin-filepath", "$FILENAME"}, | |
| format_on_save = true, | |
| no_save_after_format = false, | |
| -- parentheses completion | |
| complete_parens = false, | |
| signature_help_in_parens = true, | |
| -- update imports on file move | |
| update_imports_on_move = false, | |
| require_confirmation_on_move = false, | |
| watch_dir = "/src", | |
| } | |
| -- required to enable ESLint code actions and formatting | |
| ts_utils.setup_client(client) | |
| -- no default maps, so you may want to define some here | |
| vim.api.nvim_buf_set_keymap(bufnr, "n", "gs", ":TSLspOrganize<CR>", {silent = true}) | |
| vim.api.nvim_buf_set_keymap(bufnr, "n", "qq", ":TSLspFixCurrent<CR>", {silent = true}) | |
| vim.api.nvim_buf_set_keymap(bufnr, "n", "gr", ":TSLspRenameFile<CR>", {silent = true}) | |
| vim.api.nvim_buf_set_keymap(bufnr, "n", "gi", ":TSLspImportAll<CR>", {silent = true}) | |
| end | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment