home: vim: fix lua formatting

This commit is contained in:
Bruno BELANYI 2023-05-06 18:58:30 +01:00
parent c2d231d3f1
commit 1e9f6fe957
9 changed files with 19 additions and 18 deletions

View File

@ -30,7 +30,7 @@ local keys = {
x = "XML encode",
y = "C string encode",
-- Custom
d = { vim.diagnostic.goto_prev, "Previous diagnostic" }
d = { vim.diagnostic.goto_prev, "Previous diagnostic" },
},
["]"] = {
name = "Next",
@ -60,7 +60,7 @@ local keys = {
x = "XML decode",
y = "C string decode",
-- Custom
d = { vim.diagnostic.goto_next, "Next diagnostic" }
d = { vim.diagnostic.goto_next, "Next diagnostic" },
},
-- Option mappings

View File

@ -39,7 +39,7 @@ M.on_attach = function(client, bufnr)
-- * nothing displayed
-- * single diagnostic at the end of the line (`virtual_text`)
-- * full diagnostics using virtual text (`virtual_lines`)
local text = vim.diagnostic.config().virtual_text
local text = vim.diagnostic.config().virtual_text
local lines = vim.diagnostic.config().virtual_lines
-- Text -> Lines transition
@ -63,7 +63,7 @@ M.on_attach = function(client, bufnr)
end
local function show_buffer_diagnostics()
vim.diagnostic.open_float(nil, { scope="buffer" })
vim.diagnostic.open_float(nil, { scope = "buffer" })
end
local keys = {
@ -94,5 +94,4 @@ M.on_attach = function(client, bufnr)
wk.register(keys, { buffer = bufnr })
end
return M

View File

@ -17,7 +17,9 @@ end
---@param cmd string? command to check
---@return fun(cmd: string): boolean executable
M.is_executable_condition = function(cmd)
return function() return M.is_executable(cmd) end
return function()
return M.is_executable(cmd)
end
end
-- whether or not we are currently in an SSH connection

View File

@ -28,7 +28,7 @@ cmp.setup({
end,
["<C-n>"] = cmp.mapping(cmp.mapping.select_next_item({ behavior = cmp.SelectBehavior.Insert }), { "i", "c" }),
["<C-p>"] = cmp.mapping(cmp.mapping.select_prev_item({ behavior = cmp.SelectBehavior.Insert }), { "i", "c" }),
["<C-d>"] = cmp.mapping.scroll_docs(-5),
["<C-d>"] = cmp.mapping.scroll_docs(-5),
["<C-f>"] = cmp.mapping.scroll_docs(5),
["<C-y>"] = cmp.mapping.confirm({ behavior = cmp.ConfirmBehavior.Insert, select = false }),
["<C-e>"] = cmp.mapping.abort(),

View File

@ -1,4 +1,5 @@
-- Intercept all fold commands
-- stylua: ignore
vim.g.fastfold_fold_command_suffixes = {
"x", "X", "a", "A", "o", "O", "c", "C", "r", "R", "m", "M", "i", "n", "N",
}

View File

@ -1,4 +1,4 @@
local gitsigns = require('gitsigns')
local gitsigns = require("gitsigns")
local wk = require("which-key")
gitsigns.setup({
@ -13,13 +13,13 @@ local keys = {
["[c"] = { "&diff ? '[c' : '<cmd>Gitsigns prev_hunk<CR>'", "Previous hunk/diff", expr = true },
["]c"] = { "&diff ? ']c' : '<cmd>Gitsigns next_hunk<CR>'", "Next hunk/diff", expr = true },
-- Commands
["<leader>g"] = {
name = "Git",
-- Actions
b = { gitsigns.toggle_current_line_blame, "Toggle blame virtual text" },
d = { gitsigns.diffthis, "Diff buffer" },
-- stylua: ignore
D = { function() gitsigns.diffthis("~") end, "Diff buffer against last commit" },
g = { "<cmd>Git<CR>", "Git status" },
h = { gitsigns.toggle_deleted, "Show deleted hunks" },

View File

@ -65,7 +65,6 @@ null_ls.register({
}),
})
-- Shell (non-POSIX)
null_ls.register({
null_ls.builtins.code_actions.shellcheck.with({
@ -98,7 +97,7 @@ null_ls.register({
-- Shell (POSIX)
null_ls.register({
null_ls.builtins.code_actions.shellcheck.with({
-- Restrict to POSIX sh
-- Restrict to POSIX sh
filetypes = { "sh" },
-- Only used if available
condition = utils.is_executable_condition("shellcheck"),

View File

@ -3,15 +3,15 @@ if not require("ambroisie.utils").is_ssh() then
end
local function copy(lines, _)
require('osc52').copy(table.concat(lines, '\n'))
require("osc52").copy(table.concat(lines, "\n"))
end
local function paste()
return {vim.fn.split(vim.fn.getreg(''), '\n'), vim.fn.getregtype('')}
return { vim.fn.split(vim.fn.getreg(""), "\n"), vim.fn.getregtype("") }
end
vim.g.clipboard = {
name = 'osc52',
copy = {['+'] = copy, ['*'] = copy},
paste = {['+'] = paste, ['*'] = paste},
name = "osc52",
copy = { ["+"] = copy, ["*"] = copy },
paste = { ["+"] = paste, ["*"] = paste },
}

View File

@ -7,8 +7,8 @@ telescope.setup({
["<C-h>"] = "which_key",
-- I want the normal readline mappings rather than scrolling
["<C-u>"] = false,
}
}
},
},
},
extensions = {
fzf = {