summaryrefslogtreecommitdiff
path: root/ftplugin
diff options
context:
space:
mode:
authorAbouzar Parvan <[email protected]>2021-07-11 02:04:20 +0430
committerGitHub <[email protected]>2021-07-10 17:34:20 -0400
commit93379a2977ba10695cc6d0aac3ca4ce9111fa31e (patch)
treea6aa2ee2fba66073adc1d7e2eef9c3c9160fd2ac /ftplugin
parent5c7600322848fa1a55482e2b8b45c7f97cf67a85 (diff)
avoiding OCD attack with the help of folke/todo-comments (#839)
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>