docker
This commit is contained in:
@@ -38,6 +38,7 @@
|
|||||||
"raycast"
|
"raycast"
|
||||||
"obsidian"
|
"obsidian"
|
||||||
"spotify"
|
"spotify"
|
||||||
|
"docker"
|
||||||
|
|
||||||
# not me using em :(
|
# not me using em :(
|
||||||
"mongodb-compass"
|
"mongodb-compass"
|
||||||
|
|||||||
@@ -8,8 +8,8 @@ return {
|
|||||||
lint.linters_by_ft = {
|
lint.linters_by_ft = {
|
||||||
-- python = { "ruff", "mypy" },
|
-- python = { "ruff", "mypy" },
|
||||||
dockerfile = { "hadolint" },
|
dockerfile = { "hadolint" },
|
||||||
json = { "jsonlint" },
|
-- json = { "jsonlint" },
|
||||||
markdown = { "vale" },
|
-- markdown = { "vale" },
|
||||||
}
|
}
|
||||||
|
|
||||||
-- To allow other plugins to add linters to require('lint').linters_by_ft,
|
-- To allow other plugins to add linters to require('lint').linters_by_ft,
|
||||||
|
|||||||
@@ -66,12 +66,12 @@ return {
|
|||||||
"gofumpt",
|
"gofumpt",
|
||||||
"goimports-reviser",
|
"goimports-reviser",
|
||||||
"hadolint",
|
"hadolint",
|
||||||
"jsonlint",
|
-- "jsonlint",
|
||||||
-- "mypy",
|
-- "mypy",
|
||||||
"prettier",
|
"prettier",
|
||||||
-- "ruff",
|
-- "ruff",
|
||||||
"stylua",
|
"stylua",
|
||||||
"vale",
|
-- "vale",
|
||||||
})
|
})
|
||||||
require("mason-tool-installer").setup { ensure_installed = ensure_installed }
|
require("mason-tool-installer").setup { ensure_installed = ensure_installed }
|
||||||
|
|
||||||
@@ -131,7 +131,7 @@ return {
|
|||||||
|
|
||||||
-- Execute a code action, usually your cursor needs to be on top of an error
|
-- Execute a code action, usually your cursor needs to be on top of an error
|
||||||
-- or a suggestion from your LSP for this to activate.
|
-- or a suggestion from your LSP for this to activate.
|
||||||
map(vim.lsp.buf.code_action, "[C]ode [A]ction", "<leader>ca")
|
map("<leader>ca", vim.lsp.buf.code_action, "[C]ode [A]ction")
|
||||||
|
|
||||||
-- Opens a popup that displays documentation about the word under your cursor
|
-- Opens a popup that displays documentation about the word under your cursor
|
||||||
-- See `:help K` for why this keymap.
|
-- See `:help K` for why this keymap.
|
||||||
|
|||||||
Reference in New Issue
Block a user