summaryrefslogtreecommitdiff
path: root/ftplugin
diff options
context:
space:
mode:
Diffstat (limited to 'ftplugin')
-rw-r--r--ftplugin/euphoria3.lua2
-rw-r--r--ftplugin/java.lua2
-rw-r--r--ftplugin/python.lua2
-rw-r--r--ftplugin/rust.lua2
4 files changed, 4 insertions, 4 deletions
diff --git a/ftplugin/euphoria3.lua b/ftplugin/euphoria3.lua
index 7c3a1da3..b59a265a 100644
--- a/ftplugin/euphoria3.lua
+++ b/ftplugin/euphoria3.lua
@@ -2,7 +2,7 @@ if require("lv-utils").check_lsp_client_active "elixirls" then
return
end
--- TODO Remove this at some point
+-- TODO: Remove this at some point
require("lspconfig").elixirls.setup {
cmd = { DATA_PATH .. "/lspinstall/elixir/elixir-ls/language_server.sh" },
}
diff --git a/ftplugin/java.lua b/ftplugin/java.lua
index 489deb3b..2f42a78f 100644
--- a/ftplugin/java.lua
+++ b/ftplugin/java.lua
@@ -61,7 +61,7 @@ end
-- init_options = {bundles = bundles}
-- })
--- TODO setup autoformat stuff later
+-- TODO: setup autoformat stuff later
-- _java = {
-- -- {'FileType', 'java', 'luafile '..CONFIG_PATH..'/lua/lsp/java-ls.lua'},
-- {
diff --git a/ftplugin/python.lua b/ftplugin/python.lua
index 297c5f33..bfb17a3b 100644
--- a/ftplugin/python.lua
+++ b/ftplugin/python.lua
@@ -1,6 +1,6 @@
local python_arguments = {}
--- TODO replace with path argument
+-- TODO: replace with path argument
local flake8 = {
LintCommand = "flake8 --ignore=E501 --stdin-display-name ${INPUT} -",
lintStdin = true,
diff --git a/ftplugin/rust.lua b/ftplugin/rust.lua
index 4fb47582..04fc4249 100644
--- a/ftplugin/rust.lua
+++ b/ftplugin/rust.lua
@@ -85,7 +85,7 @@ else
}
end
--- TODO fix these mappings
+-- TODO: fix these mappings
vim.api.nvim_exec(
[[
autocmd Filetype rust nnoremap <leader>lm <Cmd>RustExpandMacro<CR>