From bfb85f96207f5f83427f466ed55a45a69f25a6d3 Mon Sep 17 00:00:00 2001 From: "MengChen. Huang" Date: Sat, 31 Jul 2021 06:22:25 +0200 Subject: add gdscript lsp support (#1164) --- ftplugin/gdscript.lua | 1 + 1 file changed, 1 insertion(+) create mode 100644 ftplugin/gdscript.lua (limited to 'ftplugin') diff --git a/ftplugin/gdscript.lua b/ftplugin/gdscript.lua new file mode 100644 index 00000000..b23a20e2 --- /dev/null +++ b/ftplugin/gdscript.lua @@ -0,0 +1 @@ +require("lsp").setup "gdscript" -- cgit v1.2.3 From 8e26c44ffd5eda651d2e22b9f8f99e632e8e64e9 Mon Sep 17 00:00:00 2001 From: christianchiarulli Date: Sun, 1 Aug 2021 15:45:49 -0400 Subject: haskell support --- ftplugin/haskell.lua | 1 + 1 file changed, 1 insertion(+) create mode 100644 ftplugin/haskell.lua (limited to 'ftplugin') diff --git a/ftplugin/haskell.lua b/ftplugin/haskell.lua new file mode 100644 index 00000000..374bed1a --- /dev/null +++ b/ftplugin/haskell.lua @@ -0,0 +1 @@ +require("lsp").setup "haskell" -- cgit v1.2.3 From de4b509722e4c3d56aa539d8e4806c85b21c73a6 Mon Sep 17 00:00:00 2001 From: christianchiarulli Date: Tue, 3 Aug 2021 23:06:52 -0400 Subject: fix comment string for toml --- ftplugin/toml.lua | 1 + 1 file changed, 1 insertion(+) create mode 100644 ftplugin/toml.lua (limited to 'ftplugin') diff --git a/ftplugin/toml.lua b/ftplugin/toml.lua new file mode 100644 index 00000000..0b5f845f --- /dev/null +++ b/ftplugin/toml.lua @@ -0,0 +1 @@ +vim.cmd[[setlocal commentstring=#%s]] -- cgit v1.2.3 From e504e1f08cde5893cf6a6c39fd1029fced21b996 Mon Sep 17 00:00:00 2001 From: Abouzar Parvan Date: Wed, 4 Aug 2021 09:58:24 +0430 Subject: fix formatting and linting (#1220) --- ftplugin/toml.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ftplugin') diff --git a/ftplugin/toml.lua b/ftplugin/toml.lua index 0b5f845f..701685a4 100644 --- a/ftplugin/toml.lua +++ b/ftplugin/toml.lua @@ -1 +1 @@ -vim.cmd[[setlocal commentstring=#%s]] +vim.cmd [[setlocal commentstring=#%s]] -- cgit v1.2.3 From e93724d5f6607e876a60c946b8f59c4b3c61c215 Mon Sep 17 00:00:00 2001 From: Pasi Bergman Date: Thu, 5 Aug 2021 23:42:19 +0300 Subject: [Feature] Add PowerShell language server support (#1244) --- ftplugin/ps1.lua | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 ftplugin/ps1.lua (limited to 'ftplugin') diff --git a/ftplugin/ps1.lua b/ftplugin/ps1.lua new file mode 100644 index 00000000..6d388496 --- /dev/null +++ b/ftplugin/ps1.lua @@ -0,0 +1,3 @@ +require("lsp").setup "ps1" + +vim.cmd [[setlocal ts=4 sw=4]] -- cgit v1.2.3 From 771f872bccf41e9a8be691892d0e6d29e71b7434 Mon Sep 17 00:00:00 2001 From: grvxs Date: Fri, 6 Aug 2021 16:46:51 +0530 Subject: fix: typos in ftplugin/ --- ftplugin/elixir.lua | 2 +- ftplugin/euphoria3.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'ftplugin') diff --git a/ftplugin/elixir.lua b/ftplugin/elixir.lua index f16f71fa..f8ae8b64 100644 --- a/ftplugin/elixir.lua +++ b/ftplugin/elixir.lua @@ -1,7 +1,7 @@ require("lsp").setup "elixir" -- TODO: do we need this? --- needed for the LSP to recognize elixir files (alternativly just use elixir-editors/vim-elixir) +-- needed for the LSP to recognize elixir files (alternatively just use elixir-editors/vim-elixir) -- vim.cmd [[ -- au BufRead,BufNewFile *.ex,*.exs set filetype=elixir -- au BufRead,BufNewFile *.eex,*.leex,*.sface set filetype=eelixir diff --git a/ftplugin/euphoria3.lua b/ftplugin/euphoria3.lua index 391c51ad..168af22b 100644 --- a/ftplugin/euphoria3.lua +++ b/ftplugin/euphoria3.lua @@ -1,7 +1,7 @@ require("lsp").setup "erlang" -- TODO: do we need this? --- needed for the LSP to recognize elixir files (alternativly just use elixir-editors/vim-elixir) +-- needed for the LSP to recognize elixir files (alternatively just use elixir-editors/vim-elixir) -- vim.cmd [[ -- au BufRead,BufNewFile *.ex,*.exs set filetype=elixir -- au BufRead,BufNewFile *.eex,*.leex,*.sface set filetype=eelixir -- cgit v1.2.3